Select box hides the lengthy text as its option when displayed in IE whereas it is displayed perfect with Firefox, How can I rectify this issue...
<select name="product" id="product" style="width:135px;" onChange="javascript:refill();bannersize();">
<option value="">Select Product</option>
<?php while($result=mysql_fetch_object($sql_query))
{
?>
<option value="<?php echo $result->categories_id;?>"><?php echo $result->categories_name;?></option>
<?php
}
?>
</select>