
			var provincias=new Array();
			var localidades=new Array();
			var tipo="";

function verlocalidad(ind)
	{

		var aux=localidades[ind].split('#');
		document.getElementById("formu").idlocalidad.options.length=aux.length+1;
		var k=0;
		var posicion=1;
		document.getElementById("formu").idlocalidad.options[k].text='';
		document.getElementById("formu").idlocalidad.options[k].value='-1';
			for (k=1;k<aux.length+1;k++) {
				var aux1=aux[k-1].split("+");
				document.getElementById("formu").idlocalidad.options[k].text=aux1[0];
				document.getElementById("formu").idlocalidad.options[k].value=aux1[1];
			
			}
		
		
	}
	function iniciar1()
	{
		/*
		var p=document.getElementById("formu").provi.value.split(',');
		
		for (var i=0;i<p.length;i++)
			provincias[provincias.length]=p[i];
		
		var l=document.getElementById("formu").local.value.split(',');
		for (var i=0;i<l.length;i++)
			localidades[localidades.length]=l[i];
		
		completalocalidades();
		
		document.getElementById("formu").provincia.value='';
		document.getElementById("formu").localidad.value='';
		
		muestraCapasConJS();
		*/
	}
	function completalocalidades()
	{ 
		var cad='<select name="idprovincia" id="provinciacajero" onchange="verlocalidad(this.selectedIndex)">';
		for (var i=0;i<provincias.length;i++)
		{
			var mat=provincias[i].split("+");
			cad+='<option value="'+mat[1]+'"';
			if (mat[0]=='Asturias')
				cad+=' selected';
			cad+='>'+mat[0]+'</option>';
		}
		cad+='</select><br />';
		document.getElementById("provinciastexto").innerHTML=cad;
		verlocalidad(document.getElementById("formu").provinciacajero.selectedIndex);
	}
	
	function enviar()
	{
			document.getElementById("formu").provincia.value=document.getElementById("formu").idprovincia.options[document.getElementById("formu").idprovincia.selectedIndex].text;
			document.getElementById("formu").localidad.value=document.getElementById("formu").idlocalidad.options[document.getElementById("formu").idlocalidad.selectedIndex].text;
			document.getElementById("formu").submit()
			
			
	}
	
	function enviarBuscadorOficinas() {			
			document.getElementById("formu").buscainput.value=document.getElementById("formu").idlocalidad.options[document.getElementById("formu").idlocalidad.selectedIndex].text;
			document.getElementById("formu").submit()
	}
	
	function muestraCapasConJS(){
		if(document.getElementById("buscadorjs")) document.getElementById("buscadorjs").style.display= "block";
	}
