function buscaNoticiasBlur(){
    
    var input = document.getElementById('txt_busca')
    
    if(input.value == ''){
        input.value = 'Procurar por notícias';
    }

}

