$("document").ready(function()
{
	$("select#ProductsDDS").change(function()
	{
		var path = $("option:selected", this).attr("value");
		
		if(path != "Products")
			window.location = path;
	});
});