$(function()
{
	$('select.dropdownSubmit').change(function()
	{
		$(this).parents('form').submit();
	});
	
	$('select.dropdownRedirect').change(function()
	{
		var redirectURL = $(this).val();	
		//alert(redirectURL);
		if ((redirectURL != null) && (redirectURL != "")) {
			window.top.location.href = redirectURL;
		}

	});
});
