$(function () {
	$("#product_selector").change(function () {
		if ($(this).val() != "") {
			$("#search").submit();
		}
	});
});