Possible Duplicate:
How to expand 'select' option width after the user wants to select an option
I have a dropdown with reasonabily long text in it. it display fine in firefox but showing trimed text with respect to its size when i click on it in Internet explorer.
<select style="width:100px;" id="test">
<option>1239187239172391823kajsasdfaasdfas9817293971293</option>
<option>1239187239172391823kajsasdfaasdfas9817293971293</option>
<option>1239187239172391823kajsasdfaasdfas9817293971293</option>
<option>1239187239172391823kajsasdfaasdfas9817293971293</option>
</select>
when you open the page with above dropdown in firefox and click to view its values it will show complete description. but in internet explorer, when clicked it only show 100px and rest of the text is trimed.
is there any way to view the complete text when clicked on dropdown in ie. as it shows in firefox?