Your going to need to use javascript for this correct me someone if im wrong with the code
<select name="blah" onchange="yourfunction(this.selectedIndex)">
//then yourfunction
<script language="Javascript">
<!--
function yourfunction(value) {
location = 'http://www.yourdomain.com?var ' + value
} //-->
</script>
Not using reload because that will just reload the page. You want someway of giving options to the second select option.