the correct code syntax is:
<?php
if(isset($_POST["Country"])) {
if($_POST["Country"] == "US") {
$_SESSION['shipregion'] = "USA";
} elseif($_POST["Country"] == "CA") {
$_SESSION['shipregion'] = "Canada";
} else {
$_SESSION['shipregion'] = "International";
}
}
?>