Showing Meta Box via Jquery Checkbox

Found a solution to it though, pretty simple

<script type="text/javascript">

jQuery(document).ready(function($) {
    var dw_match_display = $('#dw_match_display');
    dw_match_display.hide();
    if ($('#dw_complete').prop('checked') ) {
        dw_match_display.show();
    }

    $( '#dw_match_details' ).on( 'change', '#dw_complete', function() {
        dw_match_display.hide();
            if ( $(this).prop('checked') ) {
                dw_match_display.show();
            } 
        });
    });
jQuery(document).ready(function($) {
    $( '#dw_match_display' ).change();
});

</script>