$(document).ready(function() {
$("input[@name='ucet_od']").attr('value','DD.MM.YYYY');
$("input[@name='ucet_od']").click(function() {
 $(this).attr('value','');
});
var names = ["#korespondencna_ulica","#korespondencna_cislo_popisne","#korespondencna_mesto","#korespondencna_smerovacie_cislo"];
for ( var i in names ) {
 $(names[i]).hide();
 $(names[i]).prevAll('label:first').hide();
 $(names[i]).next('br').hide();
 }
$("select[@name='korespondencna_adresa']").change(function() {
 var vvalue = $(this).fieldValue();
 if(vvalue == 1) {
  for ( var i in names ) {
  $(names[i]).hide();
  $(names[i]).prevAll('label:first').hide();
  $(names[i]).next('br').hide();
 }
 }
 if(vvalue == 2) {
  for ( var i in names ) {
  $(names[i]).show();
  $(names[i]).prevAll('label:first').show();
  $(names[i]).next('br').show();
 }
 }
});
});
