
function setup(){		
		var maskcp = new InputMask("#####", "codpostal");		
		var maskmovil1  = new InputMask("### ######", "movil");
		var maskmovil2  = new InputMask("### ######", "phone");
		var sizedeni = new SizeLimit("dni", 12);
}

function actualizapoblacion(){
	var codprovincia = document.getElementById('codprovincia').options[document.getElementById('codprovincia').selectedIndex].value;
	
	if(codprovincia!=39){		
		for (var i=0; i<document.getElementById('poblacion').options.length; i++){
			 if (document.getElementById('poblacion').options[i].value==="0"){
			 	 document.getElementById('poblacion').selectedIndex=i;
			 }
		 }		 
		document.getElementById('poblacion').disabled = true;	
	}else{
		document.getElementById('poblacion').disabled = false;
		document.getElementById('poblacion').selectedIndex = 0;	
	}
}