I have an assignment that I need to use a select tag to list three cities. I know how to code in html for a select tag.
This is what I have already working


Code:
<select name="city" size="1">
        <option value="0">-</option>
        <option value="Chicago">Chicago</option>
        <option value="Detroit">Detroit</option>
...