$(function(){
	$('select#country').change(function(){
		$.post('/getStates.php', { countryID: $('select#country').val()}, function(data) {
			var optStateList = eval('(' + data + ')');
			if( data == '0'){
				$('tr.stateRow').hide();
				$('select#state').val('')
				$('tr.stateInputRow').show();
			}else{
				$('tr.stateRow').show();
				$('tr.stateInputRow').hide();
				$('input#stateInput').val('');
				$('select#state').removeOption(/./);
				$('select#state').addOption(optStateList, false);
			}
		});
	})
})
