dany12 13 Light Poster

I need to use a handler that will get from my select option in html a value but not the valeu orm the option I will show my code
now

...<form action="" method="POST" class="submit">
<label for="select"> Print copy</label>
<select class="select" name="select">
<option>1 copy</option> 
<option selected="selected">2 copies</option>
<option>3 copies</option>
<option>4 copies</option>
</select> 
</form> 

wheen a user selects 1copy I will need to grab 10$ valeu and post it in jquery ajax then to php and return it with ajax back
in a div. Please help.