function addWatch(sec,cat,ty,mo,ud) {
	url = 'http://www.auctioncentre.co.za/index2.php?option=com_addwatch&amp;section_search='+ sec +'&amp;category_search='+ cat +'&amp;type_search='+ ty +'&amp;model_search='+mo;
	new Ajax(url, {	method: 'get', update: $(ud) }).request();
}
function remWatch(sec,cat,ty,mo,ud,id) {
	url = 'http://www.auctioncentre.co.za/index2.php?option=com_remwatch&amp;section_search='+ sec +'&amp;category_search='+ cat +'&amp;type_search='+ ty +'&amp;model_search='+ mo +'&amp;id='+id;
	new Ajax(url, {	method: 'get', update: $(ud) }).request();
}
function getCat(sc,ud) {
	$(ud).innerHTML="";
	url = $(sc).options[$(sc).selectedIndex].value;
	url = 'http://www.auctioncentre.co.za/index2.php?option=com_getcats&amp;id='+url;
	new Ajax(url, {	method: 'get', update: $(ud) }).request();
}
function getOpt(sc,ud) {
	$(ud).innerHTML="";
	$('man_select').innerHTML = "<div style='float:left;width:155px;'>&nbsp;</div>";
	$('mod_select').innerHTML = "<div style='float:left;width:155px;'>&nbsp;</div>";
	url = $(sc).options[$(sc).selectedIndex].value;
	url = 'http://www.auctioncentre.co.za/index2.php?option=com_getopt&amp;id='+url;
	new Ajax(url, {	method: 'get', update: $(ud) }).request();
}
function getOptS(sc,ud) {
	$(ud).innerHTML="";
	$('mod_select').innerHTML = "<div style='float:left;width:155px;'>&nbsp;</div>";
	url = $(sc).options[$(sc).selectedIndex].value;
	url = 'http://www.auctioncentre.co.za/index2.php?option=com_getopt&amp;sec='+url;
	new Ajax(url, {	method: 'get', update: $(ud) }).request();
}
function getMod(sc,ud) {
	$(ud).innerHTML="";
	url = $(sc).options[$(sc).selectedIndex].value;
	url = 'http://www.auctioncentre.co.za/index2.php?option=com_getmod&amp;id='+url;
	new Ajax(url, {	method: 'get', update: $(ud) }).request();
}
function getMan(sc,ud) {
	$(ud).innerHTML="";
	$('mod_select').innerHTML = "";
	url = $(sc).options[$(sc).selectedIndex].value;
	sec = $('sectionList').options[$('sectionList').selectedIndex].value;
	url = 'http://www.auctioncentre.co.za/index2.php?option=com_getman&amp;id='+url+'&amp;sec='+sec;
	new Ajax(url, {	method: 'get', update: $(ud) }).request();
}
function getCities(sc,ud) {
	$(ud).innerHTML="";
	url = $(sc).options[$(sc).selectedIndex].value;
	url = 'http://www.auctioncentre.co.za/index2.php?option=com_getcities&amp;id='+url;
	new Ajax(url, {	method: 'get', update: $(ud) }).request();
}
