function onCustomerSave(data,stat){
    console.log(data);
}

$(function(){
    /*$(".recallForm form").submit(
        function(event){
            alert('submitted');
            [>event.stopPropagation();<]
            event.preventDefault();
            fd = $(this).serialize();
            console.log(fd);
            $.post('/customers/ajax_save',fd,onCustomerSave);
        }
    );*/
});
