I'm having an issue where if they type in a new Person, then select "M" or "F" from the dropdown, in the listbox, I want both to show resulting to "John Doe M" with the example code:
<div class="editor-field">
<%= Html.ListBox("personList")%>
</div>
<%= Html.TextBox("newPerson")%>
<select name="personInfo">
<option value="Male">M</option>
<option value="Female">F</option>
</select>