<select id="list">
<option value="google.ru">google.ru</option>
<option value="yandex.ru">yandex.ru</option>
</select>
<a href="#" title="" onclick="openURL(); return false;">Открыть</a>
<script type="text/javascript">
function openURL(){
var select = document.getElementById('list');
//window.location = 'http://'+objSel.options[objSel.selectedIndex].value;
window.open('http://'+select.options[select.selectedIndex].value, 'Window title');
}
</script>
Вот пример, от него и "плящите".