The name is passed into the POST array along with it's value.
On the action page for your form, add:
print_r($_POST);
and you will see the listbox name in the array.
Then you can use a FOREACH loop to get it.
foreach($_POST as $FieldName => $Value){
echo $FieldName." - ".$Value."<br />;
}