/*
//#############################################################################
// register.js
//
// Last update: 04 May 2007
// Updated by: Russell S. Ahlstrom
//
//#############################################################################
*/

window.onload = function() {checkCountry();document.getElementById("country").onchange = function() {checkCountry();}}

function checkCountry() {
	var country = document.getElementById("country");
	var state = document.getElementById("state");
	var stateus = document.getElementById("stateus");
	
	if(country.value == "US") {
		state.style.display = "none";
		stateus.style.display = "inline";
	}
	else {
		state.style.display = "inline";
		stateus.style.display = "none";
	}
}