location.select2 データはページの読み込み時に初期化されます。ajax を使用して定期的にデータを更新したいのですが、select2 のデータを更新すると select2 ドロップダウンが読み取り専用になります。
jQuery("#e10_2").select2({
allowClear: true,
minimumInputLength: 1,
data:{ results: locationls, text: function(item) { return item.text; }},
formatSelection: format,
formatResult: format
});