As you've noticed Mozilla is able to expand the width of an open SELECT list, even if the closed SELECT is narrower, but alas IE can't do that. Here's an awful workaround I came up with:
CODE
<select name=MERCHANT size=1 style="width:120px;"
onclick="this.style.width='auto';this.style.position='absolute';"
onblur="this.style.width='120px';this.style.position='static';">
Only other fix I can think of is to use a
DHTML drop-down menu instead of a form SELECT element. This will bring various usability issues including javascript-dependency in IE (but even the current SELECT menus depends on javascript to work).
BTW, there are many errors in the HTML code:
http://www.htmlhelp.com/cgi-bin/validate.c....scripbank.com/