Okay, I have this form and I want to submit a page in the value and a directory in the action so when the option is selected it opens the page thats in the directory.
<form method="post" action="pages/">
<ul class="pageitem">
<li class="textbox"><span class="header">Select a specific year</span>
</li>
<li class="select"><select name="pages/">
<option value="1"></option>
<option value="2007.php">2007</option>
<option value="2008.php">2008</option>
<option value="2009.php">2009</option>
<option value="2010.php">2010</option>
<option value="2011.php">2011</option>
<option value="2012.php">2012</option>
</select><span class="arrow"></span>
</li>
<li class="button">
<input name="Submit input" type="submit" value="Submit input" />
</li>
</ul>
</form>