What you want to do (if in fact you want to in php), is this:
okay, here's a sample. Not with an option box, just a text box, but it's the general idea.
The form page:
<form name="blah" METHOD="POST" action="process.php">
<input type="text" value="" name="textbox1">
<input type="submit" value="submit" name="submit">
</form>
Now, you want to get the results on the next page that you submitted before, and declare it as a variable. You can do this:
if (isset($_GET['textbox1']))
{
$tofield = $_GET['textbox1'];
}
Now the to field variable has information, and is defined as $tofield. Just have to format it now.
<form name="blah2">
<input type="text" name="tofield" value="{$tofield}">
</form
By embedding the variable into the value, it should come out inside the text box. I have not tested this, but it should work.
Hope this helps,
xwin