selected options with link code example
Example: selected options with link
<select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"
<option value="fr">
Français <!-- Go root/fr on click -->
</option>
</select>