Jeez it seems like I'm just abusing this n00b section to get answers to my retartedness.
I'm not sure if this was possible but I just spent about an hour trying to figure it out myself (lies about half hour), OK on to my question;
I have a html form with the entries in a drop down menu like this;
<option label="option label" value="666">option label</option>
I am then using the GET method to send this to a PHP script. example code;
if(isset($_GET['SubmitForm']))
{
$variable = $_GET['ID'];
}
Basically I am trying to find a way to also send the form label to the PHP script as well and not just the value. I'm sure this is possible but I don't have a clue how to go about it. I'm suspecting some javascript might help me out

Well if anyone could point me in the right direction or just tell me if its not possible it would be much appreciated. Oh and before you ask I cant rewrite the HTML form, the dropdown menu has 1000's of entries.