  $(document).ready(function(){
    $('#recordat').click(function(){
      $.Zebra_Dialog("<form id='recordarPassword'><label for='record'>E-mail:</label> <input type='text' name='valor' id='valor' value='dani@activaweb.net' /><input type='hidden' name='lang' id='lang' value='" + $("#language").val() + "' /></form>", {
        "title":    "Recordar password",
        "onClose":  function(caption) {
          jQuery.ajax({
            type: "POST",
            url: "/libraries/classes/recordarPassword/recordar.asp",
            dataType: 'json',
            data: (jQuery("#recordarPassword").serialize()),
            success: function(response){ 
              alert('asdfas' + response);
            }
          });
        }
      });
    })
  });

