$(document).ready(function(){
	$("#industry_send").change(sendEm);
	$("#country_send").change(chSendEm);
});
function sendEm(){
	var selected = $("#industry_send option:selected");		
	place = selected.val()
	//alert('sending you to...' + place);
	window.location.href = place; 
}

function chSendEm(){
	var selected = $("#country_send option:selected");		
	place = selected.val()
	//alert('sending you to...' + place);
	window.location.href = place; 
}

