You could try putting something like this near the beginning of your php script (maybe just under require_once('./global.php')):
PHP Code:
if ($_REQUEST['radio_button'] == ???)
{
$vbulletin->url = 'search.php?do=process&query=' . $_REQUEST['q'];
print_standard_redirect('', false);
}
the 'if' condition needs to be changed, I couldn't figure it out because you provided a picture of the radio buttons but not the code (or maybe you only made a picture?)
ETA: the $_REQUEST['q'] probably needs to be encoded for a url - I'll have to look that up.