Mysql veritabanından PHP ile verileri select saydırıyorum burda bir sıkıntı yok, benim yapmak istediğim Select ile her hangi bir ilan türünü seçip, bu ilan türüne ait form elemanlarının input text ve checkboxlar, option, ları seçip ve işaretlediğimi varsayalım, ama ben bu ilan türünden vazgeçip başka ilan türünü seçtiğimde, daha önce seçtiğim ilan türüne ait form elemanlarının değerlerini nasıl sıfırlarım, aşağıdaki kod ile daha önce yapmıştım ama şimdi kod yapısı çalışmadı, bu konuda yardımlarınızı bekliyorum.


<script>
$(document).ready(function() {
$.divliste = {
'0' : $([]),
'1' : $('#1'),
'2' : $('#2'),
'3' : $('#3'),
'4' : $('#4'),
'5' : $('#5'),
'6' : $('#6')
};

$('.divsecici').change(function() {
// hide all
$.each($.divliste, function() { this.hide(); });
// show current
$.divliste[$(this).val()].show();

//classı selsts olan selectleri seçilmemiş yapıyoruz div değiştiğinde
$('#1 option, #2 option, #3 option, #4 option, #5 option, #6 option').attr('selected',false);
$('#1 input[type="checkbox"], #2 input[type="checkbox"], #3 input[type="checkbox"], #4 input[type="checkbox"], #5 input[type="checkbox"], #6 input[type="checkbox"]').attr('checked', false);
$('#1 input[type="text"], #2 input[type="text"], #3 input[type="text"], #4 input[type="text"], #5 input[type="text"], #6 input[type="text"]').val('');
});
});
</script>