change_price(0);

function change_price(val){
	if (val==0){change_to_rent()}else{change_to_buy()}
}

function change_to_buy(){
	//If this prices are taken from database they can be easily put into a loop instead of going through one by one.
	document.srchFrm.price.options[0].text="All prices";
	document.srchFrm.price.options[1].text="£150,000";
	document.srchFrm.price.options[2].text="£250,000";
	document.srchFrm.price.options[3].text="£300,000";
	document.srchFrm.price.options[4].text="£350,000";
	document.srchFrm.price.options[5].text="£500,000";
	document.srchFrm.price.options[6].text="£750,000";
	document.srchFrm.price.options[7].text="£1 million";
	document.srchFrm.price.options[8].text="£2 million";
	
	document.srchFrm.price.options[0].value=""
	document.srchFrm.price.options[1].value="150000"
	document.srchFrm.price.options[2].value="250000"
	document.srchFrm.price.options[3].value="300000"
	document.srchFrm.price.options[4].value="350000"
	document.srchFrm.price.options[5].value="500000"
	document.srchFrm.price.options[6].value="750000"
	document.srchFrm.price.options[7].value="1000000"
	document.srchFrm.price.options[8].value="2000000"
}

function change_to_rent(){

//If this prices are taken from database they can be easily put into a loop instead of going through one by one.
	document.srchFrm.price.options[0].text="All prices";
	document.srchFrm.price.options[1].text="£175 pw";
	document.srchFrm.price.options[2].text="£250 pw";
	document.srchFrm.price.options[3].text="£300 pw";
	document.srchFrm.price.options[4].text="£350 pw";
	document.srchFrm.price.options[5].text="£500 pw";
	document.srchFrm.price.options[6].text="£750 pw";
	document.srchFrm.price.options[7].text="£1000 pw";
	document.srchFrm.price.options[8].text="> £1000 pw";

	document.srchFrm.price.options[0].value=""
	document.srchFrm.price.options[1].value="175"
	document.srchFrm.price.options[2].value="250"
	document.srchFrm.price.options[3].value="300"
	document.srchFrm.price.options[4].value="350"
	document.srchFrm.price.options[5].value="500"
	document.srchFrm.price.options[6].value="750"
	document.srchFrm.price.options[7].value="1000"
	document.srchFrm.price.options[8].value="10000"

}
