You need to first, make your form properly.
This ...
<option value="001">Complete
<option value="002">Part1
Should be this ...
<option value="001">Complete</option>
<option value="002">Part1</option>
Then, if you want the form to remember which choice the user made, you need to add "SELECTED" to the option that is to be set as default.
One way to do it, depending on the number of options you will ultimately have is to check the value of the submitted variable for each option, if it matches, then add "SELECTED" to that option.
<option value="001"
<?
if ($choice == "001") {
echo " SELECTED";
}
?>
Complete</option>
<option value="002"
<?
if ($choice == "002") {
echo " SELECTED";
}
?>
Part1</option>
If you are going to have large numbers of options, you probably want to use switch or some other more efficient method.