/*global Scroller */
var modelBox = {
  init: function(fieldName, destinations) {
    var self = modelBox;

    self._destinations = destinations;
    self._fieldName = fieldName;
  },

  bindSelectBoxChange: function() {
    var self = modelBox;
    $("#form_" + self._fieldName).change(function() {
        var ajaxUrl = self._destinations[this.value];
        $.getScript(ajaxUrl);
    });
  }
};

