Try the following:
$("#yourForm").bind("reset", function() {
return false;
});
In this case, you will need to save the new data (obtained by you from the Ajax callback). And then, when the user resets the form, you manually fill in the form elements with this data.