
function selectDropDown(theValue, dropDown){ 
	//if(theValue!="*"&&theValue!=""){
	//alert("called");
		for(i=0;i<dropDown.options.length;i++){
			if(dropDown.options[i].value==theValue){
				dropDown.selectedIndex=i;
			}
		}
	//}
}
