﻿$('#departmentselect').livequery('change', 
	function(e) {
	
	department = $('#departmentselect').val();
	window.location=department;
});
