Technically, a dropdown cannot have more than one selected value. I'm sure that you mean a multi-select
list (also created with the HTML SELECT element).
In that case (or in any case where a single parameter name can have more than one value; a check-box group for example) you would use request.getParameterValues() to get a
String array of all the values.
hth,
bear