function getState(countryId,stateId)
{
   var strURL="/functions/findState.php?country="+countryId+"&state="+stateId;
		$.get(strURL, function(response) {
	    $('#statediv').html(response);
		});

}

function sessionstateid(state)
{
   var strURL="/functions/sessionstate.php?state="+state;
		$.get(strURL, function(response) {
	   
		});


}
