function objetoAjax(){
	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 enviaEstado(){
	divResultado= document.getElementById('municipio');
	estado = document.getElementById('cbo_estado').value;
	datos = estado.split(';');
	
	
	ajax=objetoAjax();
	ajax.open("POST", "buzon_op.php",true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			//mostrar resultados en esta capa
			divResultado.innerHTML = ajax.responseText;
			document.getElementById('txt_estado').value = datos[1];
		}
	}
	ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=utf-8");
	ajax.send("id_estado="+datos[0]+"&op=1");
}

function enviaMunicipio(){
	document.getElementById('txt_municipio').value = document.getElementById('cbo_municipio').value;
}	
