$(function () { $("#date_birth_new").inputmask(); $("#formularioRegistroPage").ajaxForm({ dataType: 'json', success: function(res){ if(res.resultado=="true"){ setTimeout(function () { location.href = '/?registro_confirm'; }, 2000); }else{ addToast('Error',res.notificacion,'error') desbloquearPagina() } }, error: function(res){ desbloquearPagina() } }); $("#selectTipoDocumentoNewRegistro").on('change',function(){ $("#idTipoUsuarioRegistro").val($(this).find(':selected').data('tipo')) }) });