I have following form:
I do not know anything about your validation plugin, but normally u could use this peace of code
You have to make your validation and then return true / false to the submit function of the form. If the plugin does return a bool value, you can try something like this:
$("form").submit(function() {
return $(this).validate({ .... });
});