function updatePrice() {
	total_price = 299
	options_description = ""
	endingIndex = 0
	x = 0
	for(x; x<options_category.length; x++){
		total_price = total_price + parseInt(options_category[x].price[document.forms[x].elements[0].selectedIndex])
		if(options_category[x].list[document.forms[x].elements[0].selectedIndex] != "None") {
		options_description = options_description + options_category[x].list[document.forms[x].elements[0].selectedIndex] + "<br>"
		}
	}
	document.forms[x].amount.value = total_price
	document.forms[x].product.value = options_description
	PriceChange.value = total_price
	return(total_price)
}


