This requires that everything is HTML and PHP to begin with.
I guess something can be done with the help of SESSION and a form, but it would be helpful to perhaps see some code or screenshots etc to get a bit better understanding of what you try to accomplish.
To controll if a checkbox is checked or not
This will be checked:
<input type="checkbox" name="Bike" checked="checked">
and this unchecked
<input type="checkbox" name="Bike">
After the form is submitted you store all the typed in info in $SESSION, need to use session_start in both scripts, so when the first script is recalled you can do a
if (isset($_SESSION['some_name']))
{
#print out all the info you want to keep here
}
In the script that the form calls, you use session_register('variable_name') and then
$_SESSION['variable_name']==$_REQUEST['some_field'];
More info about sessions: http://www.w3schools.com/php/php_sessions.asp