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

}

