$(document).ready(function() {
	$('#clientDropDown').change(function() {
		//GET THE REL OUT OF THE SELECTED DROP DOWN ITEM
		var myRel = $('#clientDropDown').children('option:selected').attr('rel');
		// REDIRECT THE USER
		window.location = myRel;
	})
});