Your posting is a bit vague, but from what I understand you're unable to pass the value of a selected item in the menu.
I will state the obvious, because selected boxes are quite simple so my guess is that there's a typing mistake or something simple;
Make sure each <option> tag has a value !
a statis select box looks like this:
<select name="Fruits" id="select3">
<option value="">Select A Fruit:</option>
<option value="Apple">Apple</option>
<option value="Orange">Orange</option>
<option value="Banana">Banana</option>
</select>
If you're still having problems, post your code. I'll look it up.