document.addEventListener('DOMContentLoaded', function() { const uzyjKonta = document.getElementById('uzyj_konta'); const kontoField = document.getElementById('konto-field'); const uzyjBlik = document.getElementById('uzyj_blik'); const blikField = document.getElementById('blik-field'); if (uzyjKonta && kontoField) { uzyjKonta.addEventListener('change', function() { kontoField.style.display = this.checked ? 'block' : 'none'; }); } if (uzyjBlik && blikField) { uzyjBlik.addEventListener('change', function() { blikField.style.display = this.checked ? 'block' : 'none'; }); } });