$(document).ready(function(){
	$('#Courses').change(function(){
			
		if($(this).val() != 0){	
			
		Core.Ajax({
			'URL': Root + '/index.php/home/ProductPicker', 
			'Data': 'Id=' + $(this).val(),
			'Complete' : function (Result){
				if (Result.Success == true) {
					window.location.href = Result.SuccessURL;	
				}
			}
		});
		
		}
			
	});
});
