Hi lludlow,
To clear the textbox, just set it's value to "", you can apply this on the onsubmit event handle, so it will clear the field when you submitting the form.
example:
<html>
<head>
<script>
function clearTextField() {
document.myform.email.value = "";
}...