function service(selectedItem){
	if(selectedItem.options.value=="commercialmove"){
		window.open("commercial movement.html","_self");
	}else if(selectedItem.options.value=="domesticmove"){
		window.open("domestic movement.html","_self");
	}else if(selectedItem.options.value=="internationalmove"){
		window.open("international movement.html","_self");
	}
}