// JavaScript Document
function get_Reginfo(pro) {
	document.getElementById('prosel').innerHTML=pro;
	document.getElementById('res').innerHTML='<table width="626" border="0"><tr><td height="42" colspan="3"><div align="center"><p><img src="img/progress_bar_large.gif" width="320" height="11" /></p></div></td></tr></table>';
	ajax=nuevoAjax();
	ajax.open("POST", "includes/includesPHP/web_getProReg.php",true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			var text = ajax.responseText
			if (text.indexOf("ERROR")==-1){
				document.getElementById('res').innerHTML=text;
			}else{
				document.getElementById('res').innerHTML='<table width="626" border="0"><tr><td height="33" colspan="3"><div align="center" class="Estilo4 Estilo16">No existe ning&uacute;n  monte regulado en la provincia seleccionada </div></td></tr></table>';
			}
		 }
		}
	ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	ajax.send('pro='+ pro);
} 

