instead of just using input tags enclose them in a form tag, make sure to use the form attribute to give the form a name, then change your onclick handler code to look like this:
<input type="radio" onclick="formName.city.value='the west coast'" name="radio" value="0"/>Seattle
<input...