
/*** Modification du prix total ***/

function changePrice(quantity, price)
{
   var quantitySel = quantity.options[quantity.selectedIndex].value;
   var prc = price * quantitySel;
   document.getElementById('totalbox').innerHTML = prc;
}

