// JavaScript Document
$(document).ready(function() {
	
	$("#as_zipcode_select").change(function () {
			
		var thisVal = $(this).val();
		
		//console.log( thisVal );	
		
		if( thisVal == "" ) {
			
			$("#as_branch_select").val(0);
			$("#as_branch_select").removeAttr("disabled");
		
		} else {
			
			
			$("#as_branch_select").val(0);
			$("#as_branch_select").attr("disabled", "disabled");
		
		}
		//console.log( $(this).val() );
								   
								   
	});
	
	$("#as_branch_select").change(function () {

		var thisVal = $(this).val();
		
		//console.log( thisVal );	
		
		if( thisVal == "" ) {
		
			$("#as_zipcode_select").val(0);
			$("#as_zipcode_select").removeAttr("disabled");
			
		} else {
			
			
			
			$("#as_zipcode_select").val(0);
			$("#as_zipcode_select").attr("disabled", "disabled");
		
		}
		
		//console.log( $(this).val() );						   
								   
	});
	
	
});
