if the form field that sends over the state names is called state_choice[] then
while($x = each($state_choice))
{
echo "$x[0] => $x[1]<BR>";
}
would print something like
state_choice => CA<BR>
state_choice => MN<BR>
you can change the echo statement to do whatever you want within the braces.
You can also use list or foreach to do similar things.
HTH