To do that would require some tricky javascript.
Why not just refer to the variable on the next page via the $_POST array?
Your recepient file:
Code:
<?php
if ($_POST['advanced'] == "hedges") {
$min = 0;
$max = 0;
$selection = "hedges";
} elseif ($_POST['advanced'] == "8to15") {
$min = 8;
$max = 15;
$selection = "bushes";
}
?>
etc.
Of course, you would need to change the values on your form, but that's no big deal. Also, check out
PHP's switch structure - it will clean up the if... then, I only used it for ease-of-understanding.