let accounts = document.querySelector('#accounts');
accounts.addEventListener("click", workAccounts , false)
function workAccounts() {
let licenzia = document.querySelector('#licenzia')
licenzia.style.display = 'none'
let accountsblock = document.querySelector('#accountsblock')
accountsblock.style.display = 'grid'
}