function traerCiudades(idestado){ var url = "TrainingClasses-Currently-Result.php?id_state="+ idestado + "&ACCION=Qw==&ACTION=Uw=="; new Ajax.Request(url, { method: 'post', onSuccess: function(transport){ $('ciudad').replace(transport.responseText); } }); } function buscarCiudades(idestado){ var url = "TrainingClasses-Currently-Result.php?id_state="+ idestado +"&ACCION=Q1M=&ACTION=Uw=="; new Ajax.Request(url, { method: 'post', onSuccess: function(transport){ $('ciudad').replace(transport.responseText); } }); } function validarfechas(){ if(!(valFechaSAlert(document.forms[0].since) && valFechaSAlert(document.forms[0].to))){ alert("The date is invalid. Please use: mm/dd/yyyy format."); return false; } } function buscarRegion(){ var url = "WantToBeServices.php?id_state="+ $('id_state').value +"&ACCION=QlI=&ACTION=U1A="; new Ajax.Request(url, { method: 'post', onSuccess: function(transport){ $('rowregion').replace(transport.responseText); } }); }