try moving this code:
<?php
if (!session_id()) session_start();
if($_SERVER["REQUEST_METHOD"] == "POST") {
$_SESSION["shipType"] = "".((isset($_POST["shipType"]))?$_POST["shipType"]:"") ."";
}
?>
down the page to be just before the doctype tag. probably a code order issue.