function onAreaChange() {
	$("#zonelist").html("");
	// エリアIDを取得
	var areaId = $("#areaId").val();
	if (areaId == null || areaId == "") {
		// 値が未選択の場合は中断
		return;
	}
	// サーバ通信
	zone.getZoneListHasQuest(areaId, function (data) {
		var buff = "";
		$.each(data, function(index, opt) {
			if (opt.value != null && opt.value != "") {
				buff += '<li><a href="' + context + '/list/qst/' + opt.value + '">' + opt.label + '</a></li>';
			}
		});
		$("#zonelist").html(buff);
	});
}
$(function() {
	onAreaChange();
});
