Is it possible to display a different value in the selected field shown rather than the actual value displayed in the dropdown? eg: I have a list of countries: FLAG | Country Name | Country International Code.
When I select the desired country from the list, I want only the FAG | Country International Code to be displayed (without the name).
<select name="countries" id="countries">
<option value='0033' class="fr" data-image="images/blank.gif" data-title="France"
data-imagecss="flag fr">France (+33)</option>
<option value='0032' class="be" data-image="images/blank.gif" data-title="Belgique"
data-imagecss="flag be">Belgique (+32)</option>
</select>
$("#countries").msDropdown();
When the user selects, for example 'Belgique (+32)' I want to display just '(+32)' in the top visible part of the dropdown.