function change_total(price, element) 
{
var ele = document.getElementById(element);
ele.value = price;
}
