You can use the jQuery plugin called DropDownCheckList to get the desired dropdown effect with multiselect options.

Its quite simple, all you have to do is create an html list and call the jQuery plugin to expand the list.
<script type="text/javascript"> $(document).ready(function() { $("#listbox").dropdownchecklist(); } </script> <select id="listbox" multiple="multiple"> <option>Option 1</option> <option>Option 2</option> <option>Option 3</option> </select>
http://dropdown-check-list.googlecode.com/svn/trunk/doc/dropdownchecklist.html
source share