// JavaScript Document
$(document).ready( function() {
		 
	$("#stockistBox").hide();
	
	$("#product_dd").change(function() {
		  $("#stockistBox").show();
		  if($(this).val()!='') {
		  $.ajax({
		   type: "POST",
		   url: "/stockist/",
		   data: "t=PRODUCT&i=" + $(this).val(),
		   success: function(msg){
			 $("#product_result").html("").html(msg);
		   }
		 });
		 }
		 else {
			$("#product_result").html(""); 
		 }
	});
	
	$("#store_dd").change(function() {
		  $("#stockistBox").show();
		  if($(this).val()!='') {
		  $.ajax({
		   type: "POST",
		   url: "/stockist/",
		   data: "t=STORE&i=" + $(this).val(),
		   success: function(msg){
			 $("#store_result").html("").html(msg);
		   }
		 });
		 }
		 else {
			$("#store_result").html(""); 
		 }
	});
	
});

