<!--
	function fixSelect(val){
	if (!pause){
	document.write("<option value="+val+">"+val+"<option>");
	//document.write("<option>"+val);
	//<option value="September - 2002">September - 2002</option>
	//document.write("<select name='t_range'>");
	} 
	else{
	var gr = document.fsearchrange.t_range;
	var valOption = new Option(val);
	var valLen = gr.length;
	gr.options[valLen] = valOption;
	}
	}

	function InitOptions()
	{
	if (style1=="Select"){
	fixSelect("Select Range");
	//fixSelect("Udaipur");
    }
	
    if (style1=="INR"){
	fixSelect("2400 - 5000");
	fixSelect("1000 - 2000");
	fixSelect("2000 - 3000");
	fixSelect("Above - 3000");
    }
	
    if (style1=="US$")
	{
	fixSelect("5 - 10");
	fixSelect("10 - 50");
	fixSelect("50 - 100");
	fixSelect("above - 100");
    }
	
	}
	
	function reInitOptions(){

	//var val = document.fsearchrange.dob_month;
	var val = document.fsearchrange.t_currency;
	var gr = document.fsearchrange.t_range;
	
	style1 = val.options[val.selectedIndex].text;
	//style2 = val.options[val.selectedIndex].value;
	//style1 = val.value;
	//style1 = document.fsearchrange.dob_month.value;
	//style2 = val.text;
	
	//alert (style1);
	//alert (style2);
	for (i=gr.length;i>0;i--){
	gr.options[i] = null;
	//gr.options[0] = null;
	}
	pause = true;
	InitOptions();
	gr.options[0].selected = true;
	return false;
	
	}
//-->
