/*$(document).ready(function()				{					$('.home_form select').change(loadStates(this));																			}); */function loadStates(countryId, selectName){	//var divId = $(this).attr('name');	//alert('country id is '+ countryId + 'and select name is '+ selectName);	if(countryId == unitedStates)	{		$('#'+selectName).html(states);	}	else	{		$('#'+selectName).html(invalidCountry);	}	}