$(document).ready(function(){

	$("#getCategory").change(function() {
		var v = $(this).find(":selected").val();
		window.location.href=v;
	});
	
	$("#consumerMarketing").change(function() {
		var v = $(this).find(":selected").val();
		window.location.href=v;
	});
	
	$("#marketingDrop").change(function() {
		var v = $(this).find(":selected").val();
		window.location.href=v;
	});
	
	$("#studioMWW").change(function() {
		var v = $(this).find(":selected").val();
		window.location.href=v;
	});
	
	$("#corpComm").change(function() {
		var v = $(this).find(":selected").val();
		window.location.href=v;
	});
	
	$("#dialogueMedia").change(function() {
		var v = $(this).find(":selected").val();
		window.location.href=v;
	});
	
	$("#publicAffairs").change(function() {
		var v = $(this).find(":selected").val();
		window.location.href=v;
	});
	
	$("#healthcare").change(function() {
		var v = $(this).find(":selected").val();
		window.location.href=v;
	});
	
});

