function updatePrice(productid)
{
  eval("var options = document.getElementById('options_"+productid+"');");
  eval("var quantity = document.getElementById('quantity_"+productid+"');");
  eval("var price = document.getElementById('price_"+productid+"');");
  price.innerHTML = '&pound;'+ (quantity.value * options.options[options.selectedIndex].value);
}
