Submit a form wiothout refreshing?

Is there a way to submit this form without refreshing using the onChange event instead of the submit button?

Thanks…

You could use the onchange event handler to send an ajax request (along with all the form data) to your server side script.

is it something as simple as adding

onChange=“this.form.submit()”

to the form element? or do I add

onchange=“document.forms[‘accounts_form’].submit();”>