I guess you have an html drop-down box and you want to be able to select two or more options using the 'multiple' keyword in html.
Change the name by adding '[]' at the end:
<select name='mybox[]'>
<option....>
</select>
Now PHP will see 'mybox' as an array and you can print_r($mybox) to see what's in it.