public render_troop_list() {
		console.log("Rendering Troop List");
		return this.render_select_options($("#troops select#list"), DbEditor.troops.get_list());
	}
	public render_troop_by_id(id) {
		return this.render_troop(DbEditor.troops.get_item(id));
	}