function populateState( country ) { 
 
	var box	= document.forms['registration'].state; 
	box.options.length = 1; // Clear the old list (above element 0) 
	
	if ((country == "us") || (country == "US")) {
		for( i = 0; i < us_states_iso.length; i++ ) {
			box.options[i+1] = new Option( us_states[i] , us_states_iso[i] );
			box.options.selectedIndex = 0;
		}
	} else if ((country == "au") || (country == "AU")) {
		for( i = 0; i < au_states_iso.length; i++ ) {
			box.options[i+1] = new Option( au_states[i] , au_states_iso[i] );
			box.options.selectedIndex = 0;
		}
	} else if ((country == "de") || (country == "DE")) {
		for( i = 0; i < de_states_iso.length; i++ ) {
			box.options[i+1] = new Option( de_states[i] , de_states_iso[i] );
			box.options.selectedIndex = 0;
		}
	} else if ((country == "ca") || (country == "CA")) {
		for( i = 0; i < ca_states_iso.length; i++ ) {
			box.options[i+1] = new Option( ca_states[i] , ca_states_iso[i] );
			box.options.selectedIndex = 0;
		}
	}
	
}