Apparently this doesn\'t work:
select[multiple]{ height: 100%; }
it makes the select have 100% page height...
auto
For jQuery you can try this. I always do the following and it works.
$(function () { $("#multiSelect").attr("size",$("#multiSelect option").length); });