// JavaScript Document
/*checkout*/
var total = 0;

function changeTotal(price)
{
 total = total - price;
 $('#total').html(total);
}

