
function getOrganizations( mySelect ) {
	myIndex = mySelect.selectedIndex;
	myValue = mySelect.options[myIndex].value;
	window.location.href = myValue;
}


function get_contacts( mySelect ) {
	myIndex = mySelect.selectedIndex;
	myValue = mySelect.options[myIndex].value;
	window.location.href = myValue;
} 