(Well, in IE 6.0 it cuts it off. In Firefox .8, it creates the control at 100 wide, but sizes the drop down list to fit the longest item, and clientWidth returns that width, not the set width. So who is right? Ugh.)
\n<html>\n <head><title>Test</title></head>\n <body>\n <form id='TestForm' name='TestForm'>\n <select id='TestList' name='TestList'>\n <option value='1'>Test Me #1</option>\n <option value='2'>Test Me #2 - a long one</option>\n </select>\n </form>\n </body>\n <script>\n document.getElementById("TestList").style.width = 100;\n alert(document.getElementById("TestList").clientWidth);\n </script>\n</html>\n