var product_categories = new Array();
var job_categories = new Array();
product_categories[95] = "Auctions";
product_categories[91] = "Data/Information Services";
product_categories[96] = "Financial Services";
product_categories[89] = "Franchise";
product_categories[94] = "Insurance";
product_categories[88] = "Marketing";
product_categories[100] = "Portals";
product_categories[98] = "Product / Service Providers";
product_categories[93] = "Property Management";
product_categories[99] = "Recruitment";
product_categories[87] = "ShopFront Marketing";
product_categories[97] = "Software Providers";
product_categories[90] = "Telecommunication";
product_categories[92] = "Training";
job_categories[8] = "Sales ";
function get_list(list_id, radio_id){
	
	var i = 0;
	clear_list(list_id);
	
	search_categories_box = document.getElementById(list_id);
	
	
	if (radio_id == "products"){
	
		for (key in product_categories){
			search_categories_box.options[++ i] = new Option(product_categories[key], key);
		}
	}else if (radio_id == "jobs"){
	
		for (key in job_categories){
			search_categories_box.options[++ i] = new Option(job_categories[key], key);
		}
	}else{
		alert("Undefined button");
	}
	
}
function clear_list(list_id){
	search_categories_box = document.getElementById(list_id);
	for ( i = search_categories_box.options.length - 1; i > 0; -- i ){	
		search_categories_box.options[i] = null;
	}
}

