function s() {
	
	var country = document.search.c.value;
	var type = document.search.t.value;
	
	var action = document.search.action;
	
	location.href = action + country + '_' + type + '.html';
	
}

