hello! I have a select in my code, and I want to call a function when the onchange event happens. This function need the value selected as parameter. How can I do that? This is my code: <select name='file' SIZE='1' onchange="ajaxFunc('marked')";> <?php while ($result = mysql_fetch_array($sql)){ echo "<option value='".$result['file']. "'>".$result['file']."</option>"; } ?> </select> PHP: 'marked' is what I want to know how to say Thanks. Regards