var custom_ob = {
        updateRecords : function(recs){
		if ($('distributor').getValue() == 1 && $('retailer').getValue() == undefined) {
			$('etailers').hide();
		}
		else {
			$('etailers').show();
		}
                return recs;
        }
};
