Нужно конкретно что-бы была кнопка для перехода
<select id="del">
<option value="1" selected>1</option>
<option value="2">2</option>
</select>
<a href="" id="sel"><h2 >Hello</h2></a>
$(document).ready(function(){if($('#del option:selected').val()==1)
{$('a#sel').attr("href","http://mail.ru");}
if($('#del option:selected').val()==2)
{$('a#sel').attr("href","http://yandex.ru");}
$('#del').change(function(){ if($('#del option:selected').val()==1)
{$('a#sel').attr("href","http://mail.ru");}
if($('#del option:selected').val()==2)
{$('a#sel').attr("href","http://yandex.ru");}
return false;});
});