What are the two parts called because there is the "value" part of it but what is the other??
name
nope not name
<OPTION VALUE=10>13 people</OPTION>
the bit that says "13 people"
That doesnt really have a name. Its just the bit that gets displayed. Spose you could call it the option...
yes but i need to call it.
Theres no real way of doing this using PHP. If you want to use what appears there, try:
if($selectname==10) { print "13 people"; }
note, $selectname is the name of the select input that you used in your form...