$("#load1").click(function(){
	$("#response").load("/2.php", { 'choices[]': ["Jon", "Susan"] },function(text){alert(text);});
	});
	$("#load2").click(function(){
	$("#response").load("/2.php #hello2");
});
