Nah ... no need to remove the form - just block the form submission in the form element with onsubmit="return false;"
<form onsubmit="return false;"> <input type="text" name="zipcode" onkeyup="showZone(this.value)"/> </form>