$(document).ready(function(){
	var productComboBox = $('#' + productCombo);
	productComboBox.change(function() {
		if (this.value > 0) {
			$('#frmSearch').submit();
		}
	});
});
