I am using the select tag for a multilist box.
Here is the code.
<html:select style="width: 125px;" property="avRoles" multiple="true" size="5" >
<html

ptions property="availRoleNames" />
</html:select>
my question is I pass "availRoleNames" (Set) for options. This sets the same value to the option:value and option:label.
I wanted to set different values option:value option:label.
I can pass another Set "availRoleIds" for option:value and use this availRoleNames for option:label.