When drop-down lists are used, the options they contain must be ordered logically.
The logical order depends on the context, but it may be:
It is a good accessibility practice to avoid using decorative characters (dashes, asterisks, spaces, etc.) as prefixes of the content of the <option>
tag.
Their absence enables users to directly access the required value or group of values, by simply pressing the corresponding key on the keyboard (pressing the “I” key to go to “Italy”, for example).
Therefore:
<select> <option>--Austria</option> <option>--Belgium</option> <option>--England</option> <option>--France</option> <option>--Italy</option> </select>
Should be replaced by:
<select> <option>Austria</option> <option>Belgium</option> <option>England</option> <option>France</option> <option>Italy</option> </select>