function customValidation(stateField, countryField) {
	//Fix country
	var state = stateField.options[stateField.selectedIndex].value;
	if(state.indexOf('Outside Canada') < 0) {
		countryField.value = 'Canada';
	} 
	if (countryField.value == '') {
		countryField.focus();
		return false;
	}
	return true;
}

function globalRegCustomValidation(){
	//return customValidation(document.regForm.state, document.regForm.country);
}



