-
Notifications
You must be signed in to change notification settings - Fork 0
/
Book Appointment 2.html
1084 lines (1032 loc) · 30.1 KB
/
Book Appointment 2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Book Appointment</title>
<link rel="stylesheet" href="header_goku.css">
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid rgb(78, 157, 114);
padding: 5px;
text-align: center;
}
th {
background-color:rgb(78, 157, 114);
}
.pros th, .pros td {
text-align: center;
}
body {
color: rgb(0, 0, 0);
}
.unfilled {
border: 2px solid red;
}
.blue-button {
background-color: rgb(0, 183, 255);
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
.blue-button:hover {
background-color: rgb(0, 123, 255);
}
</style>
</head>
<body bgcolor="whitesmoke" align="center">
<table>
<tr style="text-align: center;">
<td style="padding: 80px; border-color: whitesmoke; background-color: white;">
<div class="header">
<div class="left">
<div class="img-div"><a href="./Hospital.html"><img class="img" src="./image/logo_skar.jpg"></a></div>
</div>
<div class="middle">
<marquee onmouseover="this.stop();" onmouseout="this.start();" scrollamount="12" class="marquee-class" >
<img class="marquee-img" src="./image/Maequee-img.png" width="25" height="25">
<span class="marquee-text">NO 1 Hospital in India</span>
</marquee>
</div>
<div class="right">
<button class="emergency">Emergency<p>108</p></button>
<button class="email">Email<p>skar@gmail.com</p></button>
</div>
</div>
<div class="menu-bar">
<ul>
<li><a href="./Find A Doctor.html">Find a Doctor</a>
</li>
<li><a href="#">Centers of Excellence ▾</a>
<div class="dropdown-menu">
<ul>
<li><a href="./CARDIOLOGY.html">Cardiology</a></li>
<li><a href="./STENTS.html">Stent</a></li>
</ul>
</div>
</li>
<li><a href="#">Health Information ▾</a>
<div class="dropdown-menu">
<ul>
<li><a href="./Diseases and Conditions.html">Diseases and Conditions</a></li>
<li><a href="./Procedure.html">Procedures</a></li>
<li><a href="./Health Technology.html">Health Technology</a></li>
</ul>
</div>
</li>
<li><a href="#">International patient ▾</a>
<div class="dropdown-menu">
<ul>
<li><a href="./international_patient.html">Plan Your Trip</a></li>
<li><a href="./consult_online_varun.html">Online Consultation</a></li>
</ul>
</div>
</li>
<li><a href="#">Academics & Research ▾</a>
<div class="dropdown-menu">
<ul>
<li><a href="./honors_list.html">Honors List</a></li>
<li><a href="./new_in_medicine.html">New in Medicine</a></li>
</ul>
</div>
</li>
<li><a href="./contactus.html">Contact Us</a></li>
</ul>
</div>
<table>
<tr>
<td padding: 0px style="border-color: white;">
<img src=".apollodoc.png" height="700" width="500" style="margin-top: 0px;">
</td>
<td style="border-color: white; text-align: left;">
<form id="myForm">
<table style="font-size: 16px;">
<tr>
<td style="border-color: white;">
<input type="text" id="Name" name="Name" placeholder="Name*" style="width:350px; height:50px; font-size: 20px; text-align: center;">
</td>
<td style="border-color: white;">
<input type="number" id="number" name="Phone Number" placeholder="Phone Number*" style="width:350px; height:50px; font-size: 20px; text-align: center;">
</td>
</tr>
<tr>
<td style="border-color: white;">
<input type="email" id="email" name="email" placeholder="Email Address*" style="width:350px; height:50px; font-size: 20px; text-align: center;">
</td>
<td style="border-color: white;">
<select id="country" name="country" style="width:350px; height:50px; font-size: 20px; text-align: center;">
<option value="">-- Select Country --</option>
</select>
</td>
</tr>
<tr>
<td style="border-color: white;">
<select id="state" name="state" disabled style="width:350px; height:50px; font-size: 20px; text-align: center;">
<option value="">-- Select State --</option>
</select>
</td>
<td style="border-color: white;">
<select id="city" name="city" disabled style="width:350px; height:50px; font-size: 20px; text-align: center;">
<option value="">-- Select City --</option>
</select>
<br>
</td>
</tr>
<tr>
<td style="border-color: white;">
<select id="hospital" name="hospital" disabled style="width:350px; height:50px; font-size: 20px; text-align: center;">
<option value="">-- Select Hospital --</option>
</select>
<br>
</td>
<td style="border-color: white;">
<select style="width: 350px; height: 55px; font-size: 20px; text-align: center;" id="question3" name="question3" disabled>
<option value="">-- Select Speciality --</option>
<option value="cardiology">Cardiology</option>
<option value="oncology">Oncology</option>
<option value="neurology">Neurology</option>
<option value="gastroenterology">Gastroenterology</option>
<option value="orthopedics">Orthopedics</option>
<option value="dermatology">Dermatology</option>
<option value="endocrinology">Endocrinology</option>
<option value="ent">Ear, Nose & Throat</option>
<option value="general surgery">General Surgery</option>
<option value="nephrology">Nephrology</option>
<option value="neurosurgery">Neurosurgery</option>
<option value="urology">Urology</option>
<option value="ophthalmology">Ophthalmology</option>
<option value="pulmonology">Pulmonology</option>
<option value="rheumatology">Rheumatology</option>
<option value="internal medicine">Internal Medicine</option>
<option value="critical care">Critical Care</option>
<option value="radiation oncology">Radiation Oncology</option>
<option value="not_sure">Not Sure Of Speciality</option>
<option value="other">Other Specialties</option>
</select>
<br>
</td>
</tr>
</table>
</form>
<br>
<center>
<img src=logo.png width="300" height="300">
</center>
<center>
<button style="height: 45px; width: 150px; font-size: 20px;" type="submit" id="submitButton" class="blue-button" disabled>Submit</button>
</center>
</td>
</tr>
</table>
<script>
var countryDropdown = document.getElementById('country');
var stateDropdown = document.getElementById('state');
var countries = {
"United States of America": ["California", "New York", "Texas"],
"Canada": ["Ontario", "Quebec", "British Columbia"],
"United Kingdom": ["England", "Scotland", "Wales"],
"Australia": ["New South Wales", "Victoria", "Queensland"],
"Germany": ["Bavaria", "North Rhine-Westphalia", "Baden-Württemberg"],
"France": ["Île-de-France", "Provence-Alpes-Côte d'Azur", "Auvergne-Rhône-Alpes"],
"Brazil": ["São Paulo", "Rio de Janeiro", "Minas Gerais"],
"India": ["Maharashtra", "Uttar Pradesh", "Karnataka"],
"China": ["Guangdong", "Shandong", "Henan"],
"Japan": ["Tokyo", "Osaka", "Hokkaido"],
"Mexico": ["Mexico City", "Jalisco", "Nuevo León"],
"South Africa": ["Gauteng", "Western Cape", "KwaZulu-Natal"],
"Russia": ["Moscow", "Saint Petersburg", "Tatarstan"],
"Italy": ["Lombardy", "Lazio", "Veneto"],
"Spain": ["Catalonia", "Andalusia", "Madrid"],
"Argentina": ["Buenos Aires", "Córdoba", "Santa Fe"],
"Indonesia": ["West Java", "East Java", "Central Java"],
"Nigeria": ["Lagos", "Kano", "Oyo"],
"Saudi Arabia": ["Riyadh", "Makkah", "Eastern Province"],
"Egypt": ["Cairo", "Alexandria", "Giza"]
};
Object.keys(countries).forEach(function(country) {
var option = document.createElement('option');
option.value = country;
option.textContent = country;
countryDropdown.appendChild(option);
});
countryDropdown.addEventListener('change', function() {
var selectedCountry = this.value;
if (selectedCountry) {
stateDropdown.disabled = false;
stateDropdown.innerHTML = '<option value="">-- Select State --</option>';
countries[selectedCountry].forEach(function(state) {
var option = document.createElement('option');
option.value = state;
option.textContent = state;
stateDropdown.appendChild(option);
});
} else {
stateDropdown.disabled = true;
stateDropdown.innerHTML = '<option value="">-- Select State --</option>';
}
});
var cityDropdown = document.getElementById('city');
var hospitalDropdown = document.getElementById('hospital');
var citiesAndHospitals = {
"New York": {
"New York City": [
"Lenox Hill Hospital",
"Mount Sinai Hospital",
"Montefiore Medical Center"
],
"Albany": [
"Albany Medical Center",
"St. Peter's Hospital",
"Albany Memorial Hospital"
],
},
"California": {
"Los Angeles": [
"Cedars-Sinai Medical Center",
"Stanford Health Care-Stanford Hospital",
"UCLA Medical Center"
],
"San Francisco": [
"UCSF Health-UCSF Medical Center",
"UC San Francisco Benioff Children's Hospital",
"Zuckerberg San Francisco General Hospital"
]
},
"Texas": {
"Houston": [
"Houston Methodist Hospital",
"UT Southwestern Medical Center"
],
"Dallas": [
"Medical City McKinney",
"Baylor University Medical Center"
]
},
"Ontario": {
"Toronto": [
"Sunnybrook Health Sciences Centre",
"Toronto General Hospital"
],
"Thunder Bay": [
"Thunder Bay Regional Health Sciences Centre",
"Nipigon District Memorial Hospital"
]
},
"Quebec": {
"Quebec City": [
"Hôpital Saint-François d'Assise",
"Hôpital de l'Enfant-Jésus",
"Jeffery Hale Hospital"
]
},
"British Columbia": {
"Victoria": [
"Victoria General Hospital",
"Royal Jubilee Hospital"
],
"Prince George": [
"University Hospital of Northern British Columbia (UHNBC)"
]
},
"England": {
"London": [
"St Thomas' Hospital",
"King's College Hospital",
"Guy's Hospital"
],
"Manchester": [
"Manchester Royal Infirmary",
"The Christie",
"Royal Manchester Children's Hospital"
]
},
"Scotland": {
"Glasgow": [
"Queen Elizabeth University Hospital",
"Glasgow Royal Infirmary",
"Royal Hospital for Children"
],
"Edinburgh": [
"Royal Infirmary of Edinburgh",
"Western General Hospital",
"Royal Hospital for Sick Children"
]
},
"Wales": {
"Cardiff": [
"University Hospital of Wales",
"University Hospital Llandough",
"Velindre Cancer Centre"
],
"Swansea": [
"Morriston Hospital",
"Singleton Hospital",
"Princess of Wales Hospital"
]
},
"New South Wales": {
"Sydney": [
"Royal Prince Alfred Hospital",
"St Vincent's Hospital Sydney",
"Westmead Hospital"
],
"Newcastle": [
"John Hunter Hospital",
"Calvary Mater Newcastle",
"The Maitland Hospital"
]
},
"Victoria": {
"Melbourne": [
"Royal Melbourne Hospital",
"St Vincent's Hospital Melbourne",
"The Alfred Hospital"
],
"Geelong": [
"University Hospital Geelong",
"St John of God Geelong Hospital",
"Epworth Geelong"
]
},
"Queensland": {
"Brisbane": [
"Royal Brisbane and Women's Hospital",
"Princess Alexandra Hospital",
"Mater Hospital Brisbane"
],
"Gold Coast": [
"Gold Coast University Hospital",
"Pindara Private Hospital",
"Gold Coast Private Hospital"
]
},
"Bavaria": {
"Munich": [
"LMU Klinikum München",
"Klinikum der Universität München",
"Städtisches Klinikum München"
],
"Nuremberg": [
"Klinikum Nürnberg",
"Klinikum Fürth",
"Klinikum Nürnberg-Süd"
]
},
"North Rhine-Westphalia": {
"Cologne": [
"University Hospital of Cologne",
"HELIOS Hospital Cologne",
"Cologne-Merheim Hospital"
],
"Düsseldorf": [
"University Hospital Düsseldorf",
"HELIOS University Hospital Wuppertal",
"Florence Nightingale Hospital Düsseldorf"
]
},
"Baden-Württemberg": {
"Stuttgart": [
"Robert Bosch Hospital",
"Klinikum Stuttgart",
"Katharinenhospital"
],
"Heidelberg": [
"University Hospital Heidelberg",
"Heidelberg Clinic",
"Diakonissenkrankenhaus Heidelberg"
]
},
"Île-de-France": {
"Paris": [
"Pitié-Salpêtrière Hospital",
"Hôpital Cochin",
"Hôpital Européen Georges-Pompidou"
],
"Versailles": [
"Centre Hospitalier de Versailles",
"Hôpital André Mignot",
"Centre Hospitalier Intercommunal de Poissy-Saint-Germain-en-Laye"
]
},
"Provence-Alpes-Côte d'Azur": {
"Marseille": [
"Hôpital de la Timone",
"Hôpital de la Conception",
"Hôpital Nord Marseille"
],
"Nice": [
"Centre Hospitalier Universitaire de Nice",
"Hôpital de Cimiez",
"Hôpital Saint-Roch"
]
},
"Auvergne-Rhône-Alpes": {
"Lyon": [
"Hôpital Édouard Herriot",
"Hôpital de la Croix-Rousse",
"Hôpital Lyon Sud"
],
"Grenoble": [
"CHU Grenoble Alpes",
"Hôpital Michallon",
"Polyclinique des Alpes"
]
},
"São Paulo": {
"São Paulo": [
"Hospital das Clínicas da Faculdade de Medicina da USP",
"Hospital Israelita Albert Einstein",
"Hospital Sírio-Libanês"
],
"Campinas": [
"Hospital das Clínicas da Unicamp",
"Hospital Samaritano Campinas",
"Hospital Renascença"
]
},
"Rio de Janeiro": {
"Rio de Janeiro": [
"Hospital Municipal Souza Aguiar",
"Hospital Quinta D'Or",
"Hospital Samaritano Botafogo"
],
"Niterói": [
"Hospital Universitário Antônio Pedro",
"Hospital Santa Cruz",
"Hospital Icaraí"
]
},
"Minas Gerais": {
"Belo Horizonte": [
"Hospital das Clínicas da UFMG",
"Hospital Mater Dei",
"Hospital Felício Rocho"
],
"Uberlândia": [
"Hospital de Clínicas da UFU",
"Hospital Santa Genoveva",
"Hospital Santa Clara"
]
},
"Maharashtra": {
"Mumbai": [
"Bombay Hospital and Medical Research Centre",
"Kokilaben Dhirubhai Ambani Hospital",
"Tata Memorial Hospital"
],
"Pune": [
"Ruby Hall Clinic",
"Deenanath Mangeshkar Hospital",
"Sahyadri Hospitals"
]
},
"Uttar Pradesh": {
"Lucknow": [
"Sanjay Gandhi Postgraduate Institute of Medical Sciences",
"King George's Medical University",
"Ram Manohar Lohia Institute of Medical Sciences"
],
"Kanpur": [
"Regency Hospital Limited",
"Rama Medical College Hospital and Research Centre",
"Lal Imli Hospital"
]
},
"Karnataka": {
"Bangalore": [
"Apollo Hospitals",
"Manipal Hospital",
"Columbia Asia Referral Hospital"
],
"Mysore": [
"Narayana Multispeciality Hospital",
"Apollo BGS Hospitals",
"Vikram Hospital"
]
},
"Guangdong": {
"Guangzhou": [
"The First Affiliated Hospital, Sun Yat-sen University",
"Guangdong Provincial People's Hospital",
"Guangzhou First People's Hospital"
],
"Shenzhen": [
"Shenzhen Second People's Hospital",
"Shenzhen People's Hospital",
"Shenzhen University General Hospital"
]
},
"Shandong": {
"Jinan": [
"Qilu Hospital of Shandong University",
"Shandong Provincial Hospital",
"The Second Hospital of Shandong University"
],
"Qingdao": [
"Qingdao Municipal Hospital",
"The Affiliated Hospital of Qingdao University",
"Qingdao Chengyang People's Hospital"
]
},
"Henan": {
"Zhengzhou": [
"The First Affiliated Hospital of Zhengzhou University",
"Zhongmu County People's Hospital",
"The Central Hospital of Zhengzhou"
],
"Luoyang": [
"Luoyang Central Hospital",
"Luoyang Orthopaedic Hospital",
"Luoyang People's Hospital"
]
},
"Tokyo": {
"Tokyo": [
"University of Tokyo Hospital",
"Keio University Hospital",
"Tokyo Medical University Hospital"
],
"Yokohama": [
"Yokohama City University Medical Center",
"St. Marianna University School of Medicine Hospital",
"Yokohama Municipal Citizen's Hospital"
]
},
"Osaka": {
"Osaka": [
"Osaka University Hospital",
"Osaka City University Hospital",
"Osaka General Medical Center"
],
"Kobe": [
"Kobe University Hospital",
"Kobe City Medical Center General Hospital",
"Kobe City General Hospital"
]
},
"Hokkaido": {
"Sapporo": [
"Hokkaido University Hospital",
"Sapporo Medical University Hospital",
"Hokkaido Cancer Center"
],
"Asahikawa": [
"Asahikawa Medical University Hospital",
"Asahikawa Red Cross Hospital",
"Hokkaido Asahikawa Kosei Hospital"
]
},
"Mexico City": {
"Mexico City": [
"Hospital General de México",
"National Institute of Medical Sciences and Nutrition Salvador Zubirán",
"ABC Medical Center Santa Fe"
],
"Puebla": [
"Hospital Puebla",
"Hospital Ángeles Puebla",
"Hospital Universitario"
]
},
"Jalisco": {
"Guadalajara": [
"Hospital Civil de Guadalajara",
"Hospital Civil Fray Antonio Alcalde",
"Centro Médico Puerta de Hierro"
],
"Zapopan": [
"Hospital Puerta de Hierro Sur",
"Hospital Ángel Leaño",
"Hospital Civil Juan I. Menchaca"
]
},
"Nuevo León": {
"Monterrey": [
"University Hospital 'Dr. José Eleuterio González'",
"Hospital San José Tec de Monterrey",
"Hospital OCA"
],
"San Nicolás de los Garza": [
"Hospital Metropolitano",
"Zoé Water Medical Center",
"Hospital Universitario UANL"
]
},
"Gauteng": {
"Johannesburg": [
"Charlotte Maxeke Johannesburg Academic Hospital",
"Netcare Milpark Hospital",
"Chris Hani Baragwanath Hospital"
],
"Pretoria": [
"Steve Biko Academic Hospital",
"Netcare Pretoria East Hospital",
"Life Eugene Marais Hospital"
]
},
"Western Cape": {
"Cape Town": [
"Groote Schuur Hospital",
"Netcare Christiaan Barnard Memorial Hospital",
"Life Vincent Pallotti Hospital"
],
"Stellenbosch": [
"Tygerberg Hospital",
"Life Stellenbosch Hospital",
"Eerste River Hospital"
]
},
"KwaZulu-Natal": {
"Durban": [
"Inkosi Albert Luthuli Central Hospital",
"Netcare St. Augustine's Hospital",
"King Edward VIII Hospital"
],
"Pietermaritzburg": [
"Grey's Hospital",
"Mediclinic Pietermaritzburg",
"St Anne's Hospital"
]
},
"Moscow": {
"Moscow": [
"Botkin Hospital",
"Moscow City Clinical Hospital No. 67",
"Pirogov Russian National Research Medical University Hospital"
],
"Zelenograd": [
"Zelenograd City Hospital",
"Zelenograd District Hospital",
"Zelenograd Central District Hospital"
]
},
"Saint Petersburg": {
"Saint Petersburg": [
"Saint Petersburg State University Clinic",
"City Hospital No. 40",
"Botkin Hospital"
],
"Pushkin": [
"Pushkin Central District Hospital",
"Pushkin City Hospital",
"Pushkin District Hospital No. 1"
]
},
"Tatarstan": {
"Kazan": [
"Republican Clinical Hospital",
"Republican Clinical Cancer Center",
"Republican Clinical Hospital of the Ministry of Internal Affairs"
],
"Naberezhnye Chelny": [
"City Clinical Hospital No. 1",
"City Clinical Hospital No. 2",
"City Clinical Hospital No. 3"
]
},
"Lombardy": {
"Milan": [
"San Raffaele Hospital",
"Niguarda Hospital",
"Humanitas Research Hospital"
],
"Bergamo": [
"Papa Giovanni XXIII Hospital",
"Bergamo Hospital",
"Seriate Hospital"
]
},
"Lazio": {
"Rome": [
"Policlinico Umberto I",
"Gemelli University Hospital",
"San Camillo-Forlanini Hospital"
],
"Latina": [
"Santa Maria Goretti Hospital",
"San Giovanni di Dio Hospital",
"Fondazione Santa Lucia"
]
},
"Veneto": {
"Venice": [
"Ospedale Civile di Venezia",
"Ospedale dell'Angelo",
"Ospedale SS. Giovanni e Paolo"
],
"Verona": [
"Borgo Trento Hospital",
"Sacred Heart Hospital",
"Verona University Hospital"
]
},
"Andalusia": {
"Seville": [
"Hospital Universitario Virgen del Rocío",
"Hospital Virgen Macarena",
"Hospital Quirónsalud Sagrado Corazón"
],
"Malaga": [
"Hospital Regional Universitario de Málaga",
"Hospital Quirónsalud Málaga",
"Hospital Universitario Virgen de la Victoria"
]
},
"Madrid": {
"Madrid": [
"Hospital Universitario La Paz",
"Hospital Gregorio Marañón",
"Hospital Clínico San Carlos"
],
"Alcalá de Henares": [
"Hospital Universitario Príncipe de Asturias",
"Hospital Universitario de Torrejón",
"Hospital Universitario Ramón y Cajal"
]
},
"Buenos Aires": {
"Buenos Aires": [
"Hospital Italiano de Buenos Aires",
"Hospital de Clínicas José de San Martín",
"Hospital Alemán"
],
"La Plata": [
"Hospital Interzonal General de Agudos Evita",
"Hospital San Martín",
"Policlínico San Martín"
]
},
"Córdoba": {
"Córdoba": [
"Hospital Privado Universitario de Córdoba",
"Hospital Nacional de Clínicas",
"Hospital de Niños Dr. Ricardo Gutiérrez"
],
"Río Cuarto": [
"Hospital San Antonio de Padua",
"Hospital Provincial de Río Cuarto",
"Clínica Privada Independencia"
]
},
"Santa Fe": {
"Santa Fe": [
"Hospital José María Cullen",
"Hospital Iturraspe",
"Hospital J. B. Iturraspe"
],
"Rosario": [
"Hospital Provincial del Centenario",
"Hospital de Niños Víctor J. Vilela",
"Sanatorio Británico"
]
},
"West Java": {
"Bandung": [
"RSUP Dr. Hasan Sadikin Bandung",
"RS Santo Borromeus",
"RS Advent Bandung"
],
"Bogor": [
"RSUD Kota Bogor",
"RSUD Ciawi",
"RSIA Bunda Aliyah"
]
},
"East Java": {
"Surabaya": [
"RSUD Dr. Soetomo",
"RSUD Dr. Ramelan",
"RSUD Dr. Sutomo"
],
"Malang": [
"RSUD Kota Malang",
"RSU Panti Nirmala",
"RSUD Dr. Saiful Anwar"
]
},
"Central Java": {
"Semarang": [
"RSUD Dr. Kariadi",
"RS Telogorejo",
"RS Panti Wilasa Citarum"
],
"Solo": [
"RSUD Dr. Moewardi",
"RSK Bedah DKT Solo",
"RS Kasih Ibu Solo"
]
},
"Lagos": {
"Lagos": [
"Lagos University Teaching Hospital",
"Reddington Hospital",
"St. Nicholas Hospital"
],
"Ikeja": [
"Lagos State University Teaching Hospital",
"Ikeja Medical Center",
"Folabi Medical Center"
]
},
"Kano": {
"Kano": [
"Murtala Muhammed Specialist Hospital",
"Aminu Kano Teaching Hospital",
"Muhammad Abdullahi Wase Specialist Hospital"
],
"Gwale": [
"Gwale Maternity and Child Clinic",
"Murtala Muhammed Library Clinic",
"Gwale General Hospital"
]
},
"Oyo": {
"Ibadan": [
"University College Hospital, Ibadan",
"Moloney Specialist Hospital",
"Ladkem Eye Hospital"
],
"Ogbomoso": [
"Bowen University Teaching Hospital",
"Baptist Medical Centre",
"Ogbomoso General Hospital"
]
},
"Riyadh": {
"Riyadh": [
"King Abdulaziz Medical City",
"King Fahad Medical City",
"King Saud University Medical City"
],
"Al-Kharj": [
"King Khalid Hospital - Al-Kharj",
"Al-Kharj Central Hospital",
"Al Kharj Military Hospital"
]
},
"Makkah": {
"Mecca": [
"King Abdullah Medical City",
"Hira General Hospital",
"Al Noor Specialist Hospital"
],
"Jeddah": [
"King Abdulaziz University Hospital",
"Dr. Erfan and Bagedo General Hospital",
"King Faisal Specialist Hospital"
]
},
"Eastern Province": {
"Dammam": [
"King Fahd Hospital of the University",
"Specialized Medical Center Hospital",
"Almana General Hospital"
],
"Al Khobar": [
"Almana General Hospital",
"Dr. Sulaiman Al Habib Hospital",
"Almana General Hospital"
]
},
"Cairo": {
"Cairo": [
"Ain Shams University Hospitals",
"Cairo University Hospitals",
"Kasr El Ainy Hospitals"
],
"Giza": [
"Agouza Hospital",
"Al Haram Hospital",
"Imbaba Hospital"
]
},
"Alexandria": {
"Alexandria": [
"Alexandria University Hospitals",
"El Hadara Maternity University Hospitals",
"El-Mamoura Chest Hospital"
],
"Borg El Arab": [
"Borg El Arab General Hospital",
"Borg El Arab Medical Center",
"Borg El Arab Specialized Hospital"
]
},
"Giza": {
"Giza": [
"Kasr Al Ainy Hospitals",
"Sheikh Zayed Specialized Hospital",
"Al-Safa Hospital"
],
"6th of October City": [
"October 6 University Hospital",
"Dar El Fouad Hospital",
"Sphinx International Airport Hospital"
]
}
};
function populateDropdown(dropdown, options) {
dropdown.innerHTML = '<option value="">-- Select --</option>';
options.forEach(function(option) {
var optionElement = document.createElement('option');
optionElement.value = option;
optionElement.textContent = option;
dropdown.appendChild(optionElement);
});
}
stateDropdown.addEventListener('change', function() {
var selectedState = this.value;
if (selectedState) {
cityDropdown.disabled = false;
populateDropdown(cityDropdown, Object.keys(citiesAndHospitals[selectedState]));
} else {
cityDropdown.disabled = true;
hospitalDropdown.disabled = true;
populateDropdown(cityDropdown, []);
populateDropdown(hospitalDropdown, []);
}
});
cityDropdown.addEventListener('change', function() {
var selectedState = stateDropdown.value;
var selectedCity = this.value;
if (selectedCity) {
hospitalDropdown.disabled = false;
populateDropdown(hospitalDropdown, citiesAndHospitals[selectedState][selectedCity]);
} else {
hospitalDropdown.disabled = true;
populateDropdown(hospitalDropdown, []);
}
});