I really don't like the use of select/option elements for links, but they've found their way into the designers portfolio as an option and try as I might to dissuade them from using them, I know I'm going to lose the battle without the power Google and "it's bad for SEO".
I searched all over the net, and can find nothing specific to support or debunk my thoughts.
The select list that I write will end up having full accessibility with a back end script to follow the link, but does anyone know for sure if search engines will follow or ignore the URLs?
<form action="/redirect-script" method="post">
<label for="url-selection">Redirect to: </label>
<select id="url-selection" name="url_redirect">
<option value="http://example.com/" >Example.COM</option>
<option value="http://example.net/" >Example.NET</option>
<option value="http://example.org/" >Example.ORG</option>
</select>
<input type="submit" value="Go to URL" />
</form>
Cheers, Steve