Well, you can:
<form action='' method='post' onsubmit='sendRequest(); return false;'>
Keep in mind that you need to write the function yourself: retrieve all variables from the form and send them along with the AJAX request.
Also you will have to notify the user that the form is submitted by hiding the form and showing a message, else they might spam click the submit button.
~G