$.extend({
	isNotVacio: function(value){
		var valor =null;
		if(typeof value === "object") {
			valor = $(value).val();
			if($(value).is("fieldset")){
				return ($("> :input[type='checkbox']",$(value)).filter(":checked").size());
			}
		}else {
			valor = value;
		}
		return (/[A-Za-z0-9_]/.test(valor));
	}
});
$(document).ready(function(){
	/**REGION**/
	$("#region").change(function(){
		$("#comuna").html('<option value="">Seleccione</option>');
		$("#comuna").removeClass('vacio');
		$("#comuna").attr('disabled',true);
		if( $.isNotVacio($(this)) ){
			$.ajax({
				type: "POST",
				url: "/contacto/ajax-localidad/",
				async:false,
				data:'region='+$(this).val(),
				success: function(dato){
					$("#comuna").html(dato);
					$("#comuna").addClass('vacio');
					$("#comuna").attr('disabled',false);
				}
            });
		}
	});
});
