I have two documents and I want to validate the drop down menu so that there is one option selected and if they didn't select an option, then an error message appears beside the drop down menu.
Document 1"crazy.php":
<?php
$school=$_GET["school"];
if (isset($school))
$error="*";
else...