$(document).ready(function(){
    changeOrg();

    $('#bdaily-news').change(function(e){
        changeOrg();
    });
});
function changeOrg(){
     if($('#bdaily-news').attr('checked')){
            $('label[for|=organisation]').attr("style", "display: block");
            $('#organisation').attr("style", "display: inline");

        }
        else{
            $('label[for|=organisation]').hide();
            $('#organisation').hide();
        }
}