Update file includes/class.OSCFieldSuggest.js around lines 31 to 55:

base.createXmlHttpRequest = function() {
var requestInstance = false;
if (window.XMLHttpRequest) { // New IE, Firefox, Mozilla, etc.
requestInstance = new XMLHttpRequest();
if (requestInstance.overrideMimeType) {
requestInstance.overrideMimeType('text/xml');
}
} else if (window.ActiveXObject) { // Old IE
try{ // first try v 6
requestInstance = new ActiveXObject("MSXML2.XMLHTTP.6.0");
} catch (e) {
try { // then try the others...
requestInstance = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try { // last chance...
requestInstance = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
}
if(!requestInstance) {
alert("Sorry, your browser does not support AJAX. Please consider upgrading or switching browsers.");
}
return(requestInstance);
};


The order in which your OSCFieldSuggest function call is inserted needs to be the order Robert972 said:

"you dont need all of my table code... you can put the fields where you like by using:
********