<script type="text/javascript">
$(function(){
$(":checkbox").bind('click', function() {
if ($(this).attr('checked')){
$.post("свой_скрипт.php", {},
function(response){
$("#идентификатор_элемента").html(response);
$("#идентификатор_элемента").show();
}
);
}
});
})
</script>