I have an HTML select which has items like the below.
<SELECT id="mylist" size=5 >
<OPTION Value="100">100</OPTION>
<OPTION Value="200">200</OPTION>
<OPTION Value="210">210</OPTION>
<OPTION Value="211">211</OPTION>
</SELECT>

Now if I click inside the SELECT and type 21 then it will select the item 210 which is the first item starts with 21. All good.
Later I wanted to add a padding to the left of the item as requested by the client. But soon I realized that padding in SELECT will not work in IE (at least on IE6 and IE7 which I tested)
So I added
<SELECT id="mylist" size=5 >
<OPTION Value="100"> 100</OPTION>
<OPTION Value="200"> 200</OPTION>
<OPTION Value="210"> 210</OPTION>
<OPTION Value="211"> 211</OPTION>
</SELECT>

Now I can mimic padding.
But I lost the search option. It will not select 210 when I type 21 in IE. It works well in chrome. Please share your thoughts.
Find the sample here

selectare from outer space (as in "a select will appear above a Flash object (and ignore 'z-indexed' elements like a Lightbox); you've to disable it first. WTF??") so if you can't style them, forget the idea and make a choice between a minor design issue on deprecated browsers and a feature that powerusers use a lot (autocomplete/search in select). There I made the choice for you :) – FelipeAls Jul 22 '12 at 12:02optgroup, that's the semantics and accessible way of doing it (see W3C WCAG 2.0 Technique H85) – FelipeAls Jul 22 '12 at 12:06