$(function(){
	$("select.trigger").change(function(){
		switch($(this).val()) {
			case 'btwn':
				$(this).parent("div").find("span").show();
				break;
			case 'gte':
			case 'lte':
			default:
				$(this).parent("div").find("span").hide();
		}
	}).change();
});