var jobType = location.pathname;
jobType = jobType.replace(/-/g," ");
jobType = jobType.replace(/\//g,"");
jobType = jobType.replace(/.html/g,"");

jobType = jobType.toLowerCase();
if(jobType == '3d print') jobType = '3d printing';

$(document).ready(function() {
	var $options = $('option', $('#jobTypeSelectEl'));
	$options.each(function(){
		if($(this).val().toLowerCase() == jobType)
		{
			$(this).attr('selected','selected');
		}
	});
});

