$(document).ready(function(){
	$('.choose_category').change(function(){
		var categoryid = $(this).val();
		if (!isNaN(categoryid)) {
			window.location = 'http://www.barterforjewelry.com/store/product/category/' + categoryid + '/1.html';
		}
	});
	$('.choose_range').change(function(){
		var value = $(this).val();
		if (value != '') {
			window.location = 'http://www.barterforjewelry.com/store/product/display_price/' + value + '/1.html';
		}
	});
});
