var deeb = {

    getStore: function(form)
    {
        $.post("/?q=ajax", 'function=getStore&' + $(form).serialize(), function(data)
        {
            $('#stores').html(data);
        }, "json");
    },
    
    getStoreCity: function(form)
    {
        $.post("/?q=ajax", 'function=getStoreCity&' + $(form).serialize(), function(data)
        {
            $('#cities').html(data);
        }, "json");
    },

    copyBillFields: function(el)
    {
        var fields = ['name', 'country', 'zip', 'city', 'domain', 'nr', 'floor', 'door'];
        for (var i=0; i<fields.length; i++)
        {
            $('#bill_'+fields[i]).val((el.checked)?$('#post_'+fields[i]).val():'');
        }
    },
    
    toggleBill: function()
    {
        $('#billing').toggle();
    }
    
};
                       
$(document).ready(function() {
});
