function sprawdz() {
if(document.getElementById('chce').value != 'otrzymać tylko ofertę wynajmu') {
document.getElementById('sposob_zaplaty').removeAttribute('disabled');
document.getElementById('sposob_zaplaty2').removeAttribute('disabled');
document.getElementById('kaucja').removeAttribute('disabled');
}
else {
document.getElementById('sposob_zaplaty').setAttribute('disabled', 'disabled');
document.getElementById('sposob_zaplaty2').setAttribute('disabled', 'disabled');
document.getElementById('kaucja').setAttribute('disabled', 'disabled');
}

}