if(window.all){
	hideBox();
} else {
	setTimeout("hideBox();",1000);
}


function hideBox() {
	if(getElementByID("zip")){
		addListener("zip","onblur","stateLocationModifier");
	}
	
	var selectbox = document.getElementById('location_id');
	var selectlabel = document.getElementById('location_id_label');
	selectbox.style.visibility = 'hidden';
	selectlabel.style.visibility = 'hidden';
}

function stateLocationModifier() {
	var state = document.getElementById('state');
	var selected = state.options[state.selectedIndex].text;
	document.getElementById('state').getAttribute("clicked") == 1;
	
	var campusState = document.getElementById('location_id');
	
	for(i=0;i<campusState.length;i++){
		if(campusState.options[i].text == selected){
			campusState.selectedIndex = i;
			document.getElementById('location_id').getAttribute("clicked") == 1;
		//	var campusStateValue = i;
		}
	}
	
	switchDrop();
}