function registrarESTAYAESTAENadd(valor) {
//	document.form1.ciudad.value='caca';
//	alert(valor);
//	document.form1.ciudad.style.visibility = "visible";
	//document.buscaciudad.style.visibility = "hidden";
	document.getElementById("ciudad").style.display = "inline";
	document.getElementById("ciudad").innerHTML = valor;
	document.getElementById("buscaciudad").style.display = "none";
	document.getElementById("botonBuscarCiudad").style.display = "inline";
}

function buscarCiudad() {
	parent.framebuscaciudad.location.href = "USR-selectPais.php";
	document.getElementById("buscaciudad").style.display = "block";
	document.getElementById("ciudad").style.display = "none";
	document.getElementById("botonBuscarCiudad").style.display = "none";
}

function controlarSeleccion() {
	//alert('please');
	seleccion=document.formbuscaciudad.idp.value;
	if ( seleccion == -1 ) {
		alert('Debe seleccionar una opcion');
		document.errorSeleccion = false;
  	} else {
  		document.errorSeleccion = true;
  	}
}


