I guess I'm not quite understanding what you are trying to do... if you want to keep appending things to your table, just use hidden fields to store the old data, then when user goes to the next form, pull all the hidden fields and throw them into the <select> tag.
otherwise, if you want to pull a list from a database or array and select the result of the current page, then simply do something like:
$array = new array( "pressrep😛resent Repairs","presstyle😛resent Styling", ...etc...);
$selected = (isset($POST['section']))? $POST['section'] : "";
echo "<select name='section'>";
foreach($array as $key => $value){
list($name,$title) = split($value);
$issel = ($selected == $name)? "selected" : "";
echo "<option name='$name' $issel>$title</option>";
}
echo "</select>";
hope that helps... if that's what you were looking for...