$(document).ready(function(){

	$("h3:first").css({
		background:"none",
		paddingTop:"0",
		marginTop: "25px"
	});
	$("#sppSearchTerm").change(function(){
		window.location = "/spp/search-results.asp?industry_id=" + $(this).val();
	});
});