Mootools Form.Request will automatically reset a form on submission. To prevent this you must turn on the resetForm: options to false. That would look like this:
var formRequest = new Form.Request($(‘myFormID’), $(‘myTargetDivToLoadRequest’), {
resetForm: false
});
resetForm: false
});