I am trying to add a default value to the options in the select tag.
<form>
    <select>
        <option>1</option>
        <option>2</option>
        <option>3</option>
    </select>
</form>
I was wondering if you could set the default value as the value that the user chose. For example, if the user chose 2 and submitted the form, how can I set the default value to 2?
 
    