		function nuevoAjax(){
			var xmlhttp=false;
			try {
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			} catch (e) {
				try {
					xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (E) {
					xmlhttp = false;
				}
			}
		
			if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
				xmlhttp = new XMLHttpRequest();
			}
			return xmlhttp;
		}
		
		function ajam(str, url, dest) {
			var xmlHttp;
			var d = new Date();
			
			xmlHttp = nuevoAjax();
			//xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");      
			//xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");        

			xmlHttp.onreadystatechange=function() {
				if(xmlHttp.readyState==4) {
					dest.innerHTML=xmlHttp.responseText;
				}
			}

			xmlHttp.open("GET",url + "?rand=" + d.getMinutes + d.getSeconds + "&" + str,true);
			xmlHttp.send(null);  
		}
		
		function obtenerProvincias(pais) {
			var xmlHttp;
			xmlHttp = nuevoAjax();
			//xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");      
			//xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");        

			xmlHttp.onreadystatechange=function() {
				if(xmlHttp.readyState==4) {
					document.getElementById("dvProvs").innerHTML=xmlHttp.responseText;
				}
			}
			xmlHttp.open("GET","univesc.php?p=" + pais,true);
			xmlHttp.send(null);  
		}