How to submit the form using javascript with "this"
Submit form using this.form.submit()
i.e in your case it will be like
<a href="#" onclick="this.form.submit();">Save</a>
But it highly recommended to use form name
otherwise if you are comfortable using jquery you can also use jquery closest function
$(field).closest("form").submit();