<!--
//<![CDATA[

$(document).ready(function() {

	$("#client_dd").change(function(){ 
		var itemval = $("#client_dd option[@selected]").val();

		if(itemval!='') {
			document.location.href=itemval; 
		}
		return false; 
	}); 
	
	$("#problem_dd").change(function(){ 
		var itemval = $("#problem_dd option[@selected]").val();

		if(itemval!='') {
			document.location.href=itemval; 
		}
		return false; 
	}); 
	
});

//]]>
-->	
    