// JavaScript Document

function verprovincias() {
	if ( document.form1.Departamento.value != '00' ) {
		llamarasincrono('provincias.php?dpto='+document.form1.Departamento.value, 'provincias');
		document.getElementById("distritos").innerHTML = ':&nbsp;Ninguno';
	} else {
		document.getElementById("provincias").innerHTML = ':&nbsp;Ninguno';
		document.getElementById("distritos").innerHTML = ':&nbsp;Ninguno';
	}
}

function verdistritos() {
	llamarasincrono('distritos.php?dpto='+document.form1.Departamento.value+'&prv='+document.form1.Provincia.value, 'distritos');
}