function cp() {
	var id=$('#projectselector').val();
	//$('#context').html('Hello Ajax: '+id);
	$.ajax({
			url: 'cp.php',
			type: 'POST',
			data: 'id='+id,
			beforeSend: function() {				
				$('#context').hide();
				$('#context').html('');
				//('#label'+id).append( '<span style="font-size: 10px; color: #333" id="loading">&nbsp;&nbsp;Loading...</span>' )
			},
			success: function(d) {
				$('#context').hide();
				$('#context').append(d);
			},
			complete: function() {
				$('#context').fadeIn();
			}
		});	
}
