function removeProduct(productID)
{
document.getElementById("quantity" + productID).value = "0";
document.getElementById("cart").submit();
}