
			$(function()
			{
			
			
				$('#state_5993').chainSelect('#region_5993','getRegion.php',
				{ 
					before:function (target) //before request hide the target combobox and display the loading message
					{ 
						$("#loading_5993").css("display","block");
						$(target).css("display","list-item");
					},
					after:function (target) //after request show the target combobox and hide the loading message
					{ 
						$("#loading_5993").css("display","none");
						$(target).css("display","list-item");
						$("#l_region_5993").css("display","list-item");
						
					}
				});
			
				$('#region_5993').chainSelect('#province_5993','getProvince.php',
				{ 
					before:function (target) //before request hide the target combobox and display the loading message
					{ 
						$("#loading_5993").css("display","block");
						$(target).css("display","none");
					},
					after:function (target) //after request show the target combobox and hide the loading message
					{ 
						$("#loading_5993").css("display","none");
						$(target).css("display","list-item");
						$("#l_province_5993").css("display","list-item");
					}
				});
				
				$('#province_5993').chainSelect('#city_5993','getCity.php',
				{ 
					before:function (target) //before request hide the target combobox and display the loading message
					{ 
						$("#loading_5993").css("display","block");
						$(target).css("display","none");
					},
					after:function (target) //after request show the target combobox and hide the loading message
					{ 
						$("#loading_5993").css("display","none");
						$(target).css("display","list-item");
						$("#l_city_5993").css("display","list-item");
					}
				});
				
		
				$('#city_5993').chainSelect('#store_5993','getStore.php',
				{ 
					before:function (target) //before request hide the target combobox and display the loading message
					{ 
						$("#loading_5993").css("display","block");
						$(target).css("display","none");
						$("#l_email_5993").css("display","none");
						$("#email_5993").css("display","none");
					},
					after:function (target) //after request show the target combobox and hide the loading message
					{ 
						$("#loading").css("display","none");
						$(target).css("display","list-item");
						$("#l_city_5993").css("display","list-item");
						$("#l_email_5993").css("display","list-item");
						$("#email_5993").css("display","list-item");
					}
				});
				
				
			});
		
		
