1. Отформатируйте свой код
2. Кто вас так научил делать?
<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<input type="checkbox" />
<div style="background: red; display: none; width: 100px; height: 100px;"></div>
<script type="text/javascript">
$(function(){
$("input:checkbox").click(function(){
$("div").css('display', $(this).is(':checked') ? 'block' : 'none')
});
});
</script>