// For Additional Product Images Scroll Bar 
var speed = 5;
var grap  = 175;

$(function() {
		$('#country').change(function() {
			$.ajax({
				type: "GET",
				url:  "ajax.php",
				data: "type=countries&action=zones&id="+$(this).val(),
				dataType: "json",
				success: function(options){
					var max = options.length;
					var output = [];
					
					if (max > 0) {
						$('#stateZone').show();
						$('#stateZoneText').hide();
						
						for (var i = 0; i < max; i++) {	    
							output.push('<option value="'+ options[i].value +'">'+ options[i].name +'</option>');
						}             
						$('#stateZone').html(output.join(''));
					} else {
						$('#stateZone').hide();
						$('#stateZoneText').show();
					}
				}
			});
		});


	});
