

//cambioPrecios ENGLISH


function cambiaPrecios()
{
	var lista=document.busca.tipo_inmueble;
	var valorLista=lista.options[lista.selectedIndex].value;
	var nuevo=document.createElement("OPTION");

	var i=0;
	var x=document.busca.precio.length;

	for (i;i<x;i++) document.busca.precio.options[0]=null;


	if (valorLista=="6")
				{
					document.busca.precio.options[0]= new Option("Less than 150.000 Euros","35",true,true);
					document.busca.precio.options[1]= new Option("Between 150.000 & 250.000 Euros","33",false,false);
					document.busca.precio.options[2]= new Option("More than 250.000 Euros","34",false,false);
				}
	else if (valorLista=="13")
				{
					document.busca.precio.options[0]= new Option("Less than 100.000 Euros","31",true,true);
					document.busca.precio.options[1]= new Option("Between 100.000 & 150.000 Euros","32",false,false);
					document.busca.precio.options[2]= new Option("Between 150.000 & 250.000 Euros","33",false,false);					
					document.busca.precio.options[3]= new Option("More than 250.000 Euros","34",false,false);				
				}	
	/*else if (valorLista=="11")
	{
		document.busca.precio.options[0]= new Option("Less than 80.000 Euros","27",true,true);
		document.busca.precio.options[1]= new Option("More than  80.000 Euros","28",false,false);
	}*/	
	else
	{
		document.busca.precio.options[0]= new Option("Any","9",true,true);
	}
	document.busca.precio.options[0].selected=true;
}



