Is there a way to still use the pulldown for the country list, yet allow users to manually enter other countries that are not in the list? I assume I make a change to the form in the following section
I would like to keep the pulldown of countries, but also allow a user to add in a country that may not be in the list. If possible to do- Could you show the actual code that would go there to change it from a select form?
Currently, the code looks like (default in Agora 5) - Offline-orderform.html:
<tr>
<td class="ac_checkout_left_col">State/Province:</td>
<td class="ac_checkout_right_col">
<select name="Ecom_BillTo_Postal_StateProv">
<option value="$eform_Ecom_BillTo_Postal_StateProv">$eform_Ecom_BillTo_Postal_StateProv </option>
<option value="">---USA---</option>
<option>AK</option>
<option>AL</option>
But not sure what to put in. Any code examples would be appreciated.