$(function() {
            $('.is_member').click(function(){
                var check = $(this).attr('checked');
                var parent = $(this).parent();
                if(check == true){
                    parent.find('.login_box').show();    
                }else{
                    parent.find('.login_box').hide();    
                }
            });    
        });
