function fillSelect(array) {if (typeof array == 'string')eval("array = "+ array);this.clear();end = array.length;for(i=0 ; i<end ;i++)this.addSingleOption(array[i]);this.disabled = false;}function clear() {end = this.length-1;for(i=end ; i>=0 ; i--)this[i] = null;}function addSingleOption(optionArray) {Op = new Option();Op.value = optionArray[0];Op.text = optionArray[1];this[ this.length ] = Op;}function setWaitMode(loadingMessage) {this.clear();this.addSingleOption( new Array('', loadingMessage) );this.disabled = true;}function requestFill() {this.Cajax.onchange( this[ this.selectedIndex ].value );} Cajax.includedFiles[ Cajax.includedFiles.length ] = 'selectintegrationBase.js';