User724169276 posted
If it's select input field then use selected property , then if you refresh your page , everytime it will get back to default selected option.
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel" selected>Opel</option>
<option value="audi">Audi</option>
</select>