select on change ile yapabilirsin.
En son bu hale getirebildim ancak her değiştiğinde 1. tabı aktif ediyor
<script type="text/javascript">
$(document).ready(function(){
$("div.tab_content").hide();
$("div.tab_content:first").show();
$("#selectmenu1").change(function(){
var index = $(this).index();
$("div.tab_content").hide(300);
$("div.tab_content:eq(" + index + ")").show(300);
});
});
</script>