Put this before the form:
$earcode = $_POST['earcode'];
Then change your option tags to this:
<OPTION VALUE=""<?php if ($earcode=="") { print " selected"; ?>>Display the following Earrings...</option>
<OPTION VALUE="ALL"<?php if ($earcode=="ALL") { print " selected"; ?>>All Earrings </option>
<OPTION VALUE="E"<?php if ($earcode=="E") { print " selected"; ?>>Only Earwire Earrings</option>
<OPTION VALUE="P"<?php if ($earcode=="P") { print " selected"; ?>>Only Post Earrings</option>
<OPTION VALUE="L"<?php if ($earcode=="L") { print " selected"; ?>>Only Lever back Earrings</option>