Apparently this doesn\'t work:
select[multiple]{ height: 100%; }
it makes the select have 100% page height...
auto
To adjust the size (height) of all multiple selects to the number of options, use jQuery:
$('select[multiple = multiple]').each(function() { $(this).attr('size', $(this).find('option').length) })