
var def;
function objcis(eshop,lang){
  $.ajax({
    type: 'GET',
    url: '/libs/ajax/objcis.php',
    dataType: "text",
    data:  'eshop='+eshop+'&lang='+lang+'&typ=1&krajina='+$('#frm_stat').val()+"&def="+$("input[name='platba']:checked").val(),
    success:function(ret){
      $('#platba').html(ret);
    },
    error:function(er){
      alert('nastala chyba:' + er);
    }
  });

  $.ajax({
    type: 'GET',
    url: '/libs/ajax/objcis.php',
    dataType: "text",
    data:  'eshop='+eshop+'&lang='+lang+'&typ=2&krajina='+$('#frm_stat').val()+"&def="+$("input[name='doruc']:checked").val(),
    success:function(ret){
      $('#doruc').html(ret);
    },
    error:function(er){
      alert('nastala chyba:' + er);
    }
  });


}
