I have a form that lists all countries worldwide (≅200) in a dropdown field. The option label seen by the user needs to be the name of the country, but the submitted value needs to be an integer.
I’m wondering if there is an option to do this with Typeform. I’m really curious that I don't find any information about this, since this is a standard specification in HTML.
<label for="cars">Choose a car:</label>
<select id="cars" name="cars">
<option value="volvo">Volvo XC90</option>
<option value="saab">Saab 95</option>
<option value="mercedes">Mercedes SLK</option>
<option value="audi">Audi TT</option>
</select>