function getSelect(selType,str, destination, id2){
	
	document.getElementById(destination).innerHTML = "<img src='img/snake.gif'";

	 var doc = null; 

	// Make a new XMLHttp object

   if (typeof window.ActiveXObject != 'undefined' ) { 
       doc = new ActiveXObject("Microsoft.XMLHTTP"); 
   } else { 
       doc = new XMLHttpRequest(); 
   }
   
   doc.open("GET", "ajax_response.asp?sect="+selType+"&id=" + str+"&id2="+id2, false);
	doc.send(null);
	 
	if(doc.readyState == 4){
		
		if(doc.status == 200){ 
			// Write the response to the div 		
			document.getElementById(destination).innerHTML = doc.responseText;
		}else{
			document.getElementById(destination).innerHTML = "Asychronous Error";
		}
	}
}