You're welcome, and you are reading me quite correctly.
As for GET, it wouldn't be a form method, I guess, just a "method" of handling input.
http://url.com?search="golfshoes"
...as an example.
Received thusly in "handler.php"
$search=$_GET['search'];
if ($search=="golfshoes") {
echo "what size, Tiger?";
}
As for 'on change' --- you'll need to code it that way (Javascript) if you want it to occur on user action, as PHP is server-side all the way....