$(document).ready(function(){
	$('.event').change(function(){
		var select_id = this.id; 
		var state_id = $('#' + this.id).val();
		
		$.getJSON(url, {stateId: state_id, selectId: select_id},function(data){
			$('#ul_' + select_id + ' li').remove();
			var i = 0;
			$.each(data, function(){
				$('#ul_' + select_id).append('<li><a href="' + this.URL + '" target="_blank">' + this.TITLE + '</a></li>');
				i++;
			});
			if (0 == i) { 
				$('#ul_' + select_id).append('<li><i>nothing yet...</i></li>'); 
			}
		 });
	});
});
