LocationSchema.pre("validate", function(next) {
            this._id = [this.country, this.city, this.name].join(",");
            next();
        });