$(document).ready(function(){	
	$('#findWatch').submit(function() {
		
		if ($('#findWatch').attr('action') != "/sell-your-rolex-watch" && $('#findWatch select[name="query"]')[0].selectedIndex == 0) {
			
			var watchType = $('select[name="cid"]').val();
			if (watchType == -1) {
				document.location = '/used-rolex/';
			}
			else if (watchType == 4) {
				document.location = '/mens-used-rolex/';
			}
			else if (watchType == 14) {
				document.location = '/ladies-used-rolex/';
			}
			else {
				document.location = '/used-rolex/';
			}
			return false;
		}
		
		//$('#findWatch input[name="query"]').val($('#findWatch select[name="watchtype"]').val()+' '+$('#findWatch select[name="watchmodel"]').val());
		return true;
	});
	
	$('#sellWatchButton').click(function() { 
		$('#findWatch').attr('action','/sell-your-rolex-watch');
		$('#findWatch').submit();
	});
});

