$(function() {
                $('#province').change(function() {
                    var str = "";
                    str = $("#province option:selected").text();
                    $('#h_province').val(str);
                    $('#h_city').val('ÇëÑ¡Ôñ');
                });
                $('#city').change(function() {
                    var str = "";
                    str = $("#city option:selected").text();
                    $('#h_city').val(str);
                });
            });
