Set your form up something like this (using mypage.php as your page).
<form method='get' action='mypage.php'>
<select name='view'>
<option value='view1'>View 1</option>
<option value='view2'>View 2</option>
</select>
<input type='submit' value='Change'>
</form>
Then when you change the view and click on submit, it refreshes the page with with the variable 'view' passed on the URL, along with its value. Then use PHP's $_GET[''] function to get the variable's value for processing...