I want to add horizontal scroll bar in select box.i have tried with div section with following code sample,but
<div id="topicsInterest_id" style="width:180px;height:280px;overflow-y:hidden;overflow-x:scroll;">
<select id="topicsinterest" name="topicsinterest" multiple="multiple" style="width:400px;height:270px;" class="inputtxtbox">
<option> ...</option>
</select>
</div>
but client said that scroll box on the topic list etc the vertical scroller..is out of sight? It should be in view on the right side..
please help how to manage vertical scroll with horizontal scroll bar in select box,something like this 
Thanks
see this demo
You just need to remove
overflow-y:hidden;overflow-x:scroll;and set it toOR