$(function(){	
	$(".divRCSel").click(function(){
		var selType = $(this).attr("value");
		$.post('/resources/library/processors/rtBlockContent/proc.right_block_content_events.php', {type:selType}, function(data){
			$("#divRCBlockWrapper").html(data);
		});
		return false;
	});
});
