function updatePrice()
{
	clearlistbox();
	if(document.quicksearch.SearchType.value == 3)
	{
			document.quicksearch.action = "default.asp?f=listings&theorderby=&thePage=&numberofrecords=25"
			document.quicksearch.listPrice2.options[0]= new Option('--','');
			document.quicksearch.listPrice2.options[1]= new Option('$500,000','500000');
			document.quicksearch.listPrice2.options[2]= new Option('$600,000','600000');
			document.quicksearch.listPrice2.options[3]= new Option('$700,000','700000');
			document.quicksearch.listPrice2.options[4]= new Option('$800,000','800000');
			document.quicksearch.listPrice2.options[5]= new Option('$900,000','900000');
			document.quicksearch.listPrice2.options[6]= new Option('$1,000,000','1000000');
			document.quicksearch.listPrice2.options[7]= new Option('$1,500,000','1500000');
			document.quicksearch.listPrice2.options[8]= new Option('$2,000,000','2000000');
			document.quicksearch.listPrice2.options[9]= new Option('$2,500,000','2500000');
			document.quicksearch.listPrice2.options[10]= new Option('$3,000,000','3000000');
			document.quicksearch.listPrice2.options[11]= new Option('$3,500,000','3500000');
			document.quicksearch.listPrice2.options[12]= new Option('$4,000,000 +','999999999');
			
			document.getElementById("homeadvsaleslink").style.display="block";
			document.getElementById("homeadvrentallink").style.display="none";
	}
	if(document.quicksearch.SearchType.value == 9){
			document.quicksearch.action = "default.asp?f=rental_listings&theorderby=&thePage=&numberofrecords=25"
			document.quicksearch.listPrice2.options[0]= new Option('--','');
			document.quicksearch.listPrice2.options[1]= new Option('$25,000','25000');
			document.quicksearch.listPrice2.options[2]= new Option('$50,000','50000');
			document.quicksearch.listPrice2.options[3]= new Option('$75,000','75000');
			document.quicksearch.listPrice2.options[4]= new Option('$100,000 +','99999999');
			
			document.getElementById("homeadvrentallink").style.display="block";
			document.getElementById("homeadvsaleslink").style.display="none";

	}
	
	function clearlistbox()
	{
	  var lb = document.quicksearch.listPrice2;
	  for (var i=lb.options.length-1; i>=0; i--){
		lb.options[i] = null;
	  }
	  lb.selectedIndex = -1;
	}

}

