
var s_carats = '9,10,14,15,18,22,24,950 Platinum,999 Platinum';
var s_prices = '8.5113877543138,9.4419661487854,13.232370828707,14.18564625719,17.022775508628,20.790483154537,22.674336977492,19.76,20.592';
   carats = s_carats.split(',');
   prices = s_prices.split(',');
	
 
function get_gold_price(form_name){

selected_index = document.forms[form_name].carat.selectedIndex;
weight = document.forms[form_name].weight.value;

if (weight>0){
if(form_name != 'calculate_form')
price = (selected_index == 0) ? '' : prices[selected_index-1]*weight;
else
price = prices[selected_index]*weight;

if(price==='') price = 0;
price = price.toFixed(2);
// price = "Value = "+price;
}else{
price = "0.00";
}
document.forms[form_name].price.value = price;
//if(weight) document.forms[form_name].price.value = price;
}