This statement returns me the state acronym: SC
$("#billing\:city").val(dados.uf);
I have a select so I can not change:
<select id="billing:region_id" name="billing[region_id]">
<option value="">Por favor, selecione o estado</option>
<option value="485">Acre</option>
<option value="486">Alagoas</option>
<option value="487">Amapá</option>
...
<option value="507">Santa Catarina</option>
</select>
How could I create a relationship between the acronym and the state code to select the status of the acronym?
As