function changeClass(classType) {
	//Change avaiable countries (Not DB driven)
	countryBox = document.getElementById('country');
	while (countryBox.options.length > 0) {
		countryBox.options[0] = null;
	}
	
	//Clear Zones
	zoneBox = document.getElementById('zones');
	while (zoneBox.options.length > 0) {
		zoneBox.options[0] = null;
	}
	zoneBox.options[0] = new Option("All Zones", "");
	
	countryBox.options[countryBox.options.length] = new Option("All Countries", "");
	countryBox.options[countryBox.options.length] = new Option("Canada", "38");
	
	//If the classType chosen was 3 (industry) then show the united states option
	if(classType=="industry") {
		countryBox.options[countryBox.options.length] = new Option("United States", "223");
	}
	
	//Change categories
	header1 = document.getElementById('memberTypeBoxHeader');
	if(classType=="artist") {
		loadContent('categoriesDiv', 'inc/ajax/getArtistCategories.php');
	} else if(classType=="group") {
		loadContent('categoriesDiv', 'inc/ajax/getGroupCategories.php');
	} else if(classType=="industry") {
		loadContent('categoriesDiv', 'inc/ajax/getIndustryCategories.php');
	}

	//Enable/Disable Genres
	genreBox = document.getElementById('genreDiv');
	if(classType=="industry") {
		genreBox.style.display  = "none";
	} else {
		genreBox.style.display  = "block";
	}
	
}