$(function()
{
$(".Yourdiv").css("display","none");
$("#idcheckbox").click(function(){
// If checked
if ($("#idcheckbox").is(":checked"))
{
//show the hidden div
$(".Yourdiv").show("fast");
}
}
});
นี่ผมเขียน คร่าวๆ ให้นะครับ ต้องเอาไปประยุกค์เอาเอง แค่เปลี่ยน ชื่อ div กับ id ของ checkbox