$(document).ready(function(){
	// Parametros para e combo1
   $("#department").change(function () {
	   $("#city").attr("disabled","disabled");
   		$("#department option:selected").each(function () {
			//alert($(this).val());
				elegido=$(this).val();
				$.post("parts/public/ajaxrequests/deptos.php", { elegido: elegido }, function(data){
					$("#city").html(data);
					if(elegido!=""){
						$("#city").attr("disabled","");
					}
			});			
        });
   });
});