you will need to use a langauge called Javascript! w00p!
something like the following
<script>
function CheckForm()
{
if(document.formname.dropdown.value == 1)
{
document.location.href= "filename.php?what=show";
}
else
{
document.location.href= "filename.php?what=show";
}
}
</script>
<select name="dropdown" onChange="CheckForm();">
<option></option>
<option value=1>Selection 1</option>
<option value=2>Selection 2</option>
</select>
thats a real quick fix, but be aware that, it wont keep the values, so if you fill out your form, then select an option, your form is going to be blank!
in order to do that, you will need to call something like
document.formname.submit();