I have the following code
<form name="form" id="form">
  <select name="name"  onChange=" <?php $do=&something('val')?>">
    <option value="val1">val2</option>
    <option>val1</option>
  </select>
</form>
Im trying to use the options value as a parameter for a function that passes by referance how do i do this correctly
 
    