var budgetval = new Object()
	
	budgetval['1'] = [{value:"999999", text:"Below 10 Lacs"},{value:"1499999", text:"10 to 15 Lacs"},{value:"1999999", text:"15 to 20 Lacs"},{value:"2999999", text:"20 to 30 Lacs"},{value:"3999999", text:"30 to 40 Lacs"},{value:"4999999", text:"40 to 50 Lacs"},{value:"5999999", text:"50 to 60 Lacs"},{value:"7499999", text:"60 to 75 Lacs"},{value:"9999999", text:"75 Lacs to 1 Cr."},{value:"14999999", text:"1 to 1.5 Cr."},{value:"19999999", text:"1.5 to 2 Cr."},{value:"29999999", text:"2 to 3 Cr."},{value:"49999999", text:"3 to 5 Cr."},{value:"99999999", text:"5 to 10 Cr."},{value:"199999999", text:"10 to 20 Cr."},{value:"200000000", text:"More than 20 Cr."}];
	budgetval['2'] = [{value:"4999", text:"Below 5000"},{value:"9999", text:"5001 to 10000"},{value:"14999", text:"10001 to 15000"},{value:"19999", text:"15001 to 20000"},{value:"24999", text:"20001 to 25000"},{value:"39999", text:"25001 to 40000"},{value:"69999", text:"40001 to 70000"},{value:"99999", text:"70001 to 1 Lac"},{value:"149999", text:"1 to 1.5 Lacs"},{value:"199999", text:"1.5 to 2 Lacs"},{value:"499999", text:"2 to 5 Lacs"},{value:"999999", text:"5 to 10 Lacs"},{value:"1000000", text:">10 Lacs"}];
	function setBudget(chooser)
	{
		var newElem;
		var where = (navigator.appName == 'Microsoft Internet Explorer') ? -1 : null;
		var cityChooser = chooser.form.elements['budget'];
		while (cityChooser.options.length)
		{
			cityChooser.remove(0);
		}
		var choice = chooser.options[chooser.selectedIndex].value;
		var db = budgetval[choice];
		if (choice != '')
		{
			for (var i = 0; i < db.length; i++)
			{
				newElem = document.createElement('option');
				newElem.text = db[i].text;
				newElem.value = db[i].value;
				cityChooser.add(newElem, where);
			}
		}
	}
	function disable_combo(ctrl,frm_name)
	{
		if(ctrl==2 || ctrl==4 || ctrl==10 || ctrl==11 || ctrl==12 ||  ctrl==13 || ctrl==14 || ctrl==15 || ctrl==16)
		{
			val = (eval('document.' + frm_name + '.bedroom'));
			val.disabled =true;
		}
		else
		{
			val = (eval('document.' + frm_name + '.bedroom'));
			val.disabled=false;
		}
	}