I hope it is ok to post this question here

I am trying to add an interactive php form on my forum that allows people to display an image depending on the options they choose. It should reload the page they are currently on to display the image.
I know this won't work but it might give an idea of what I am looking for:
<form method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>"><br /><select name="Pet"><br /><option value="Acara">Acara</option><br /><option value="Aisha">Aisha</option><br /><option value="Blumaroo">Blumaroo</option><br /><option value="Bruce">Bruce</option><br /></select><br><br /><select name="Colour"><br /><option value="Red">Red</option><br /><option value="Yellow">Yellow</option><br /><option value="Green">Green</option><br /><option value="Blue">Blue</option><br /></select><br><br /><input type="submit" name="Show Me!" value="Show Me!"><br /></form><br /><br /><img src="<? print $Pet ?>_<? print $Colour ?>.gif">
Is this even possible with PHP? Any ideas would be greatly appreciated!