$(document).ready(function(){
    $("#sidebar>div:first-child").remove();
});
ya da:

$(document).ready(function(){
    $("#sidebar>h6").prev().remove();
});