function changestate(me) {


                    try {
                      
                        var states = [];

                        states['Select State'] = ["Select City"];
                        states['DELHI'] = ["Select City", "Delhi"];
                        states['HARYANA'] = ["Select City", "Gurgaon", "Hissar", "Faridabad", "Karnal", "Ambala", "Sonepat", "Panipat", "Kurukshetra"];
                        states['KARNATAKA'] = ["Select City", "Bangalore"];
                        states['MAHARASHTRA'] = ["Select City", "Mumbai", "Pune"];
                        states['PUNJAB'] = ["Select City", "Ludhiana"];
                        states['RAJASTHAN'] = ["Select City", "Jaipur", "Kota"];
                        states['UTTAR PRADESH'] = ["Select City", "Ghaziabad", "Meerut", "Noida", "Varansi", "Lucknow", "Kanpur", "Agra", "Jhansi", "Allahbad", "Gorekhpur", "Allahabad"];
                    var temp = states[$(me).val()];
                   
                    $('#city').children().remove();

                    for (var j = 0; j < temp.length; j++) {

                        $('<option value=' + temp[j] + '>' + temp[j] + '</option>').html(temp[j]).appendTo($('#city'));
                    }
                   
//                }
//                )
                    } catch (e)
            { alert(e); }

                }
                function oncitychange(me) {

                    //document.getElementById('city').value = $(me).val();

                }
                function sendme() {
                    try {
                        if ($('#state').val() == "Select State") {
                            alert("Select State");
                            return;
                        }
                        if ($('#city').val() == "Select City" || $('#city').val() == "Select") {
                            alert("Select City");
                            return;
                        }
                        //alert($('#city').val());
                            //alert("http://guardian.getit.in/keywords/" + $('#state').val() + "/" + $('#city').val() + "/");
                            window.open("http://guardian.getit.in/keywords/guardian/" + $('#city').val() + "/");
                        
                    }
                    catch (ex) {//alert(ex);
                }
                }
